summaryrefslogblamecommitdiffstats
path: root/src/include/gpxe/in.h
blob: e1bdde931eee921f1579206637afd169ea908309 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13


             
                   








                                    
                
                               











                                                             
                                              

                   
#ifndef	_IN_H
#define	_IN_H

#include <stdint.h>

#define IP_ICMP		1
#define IP_IGMP		2
#define IP_TCP		6
#define IP_UDP		17

/* Same after going through htonl */
#define IP_BROADCAST	0xFFFFFFFF

struct in_addr {
	uint32_t	s_addr;
};

typedef struct in_addr in_addr;

typedef uint16_t in_port_t;

struct sockaddr_in {
	struct in_addr	sin_addr;
	in_port_t	sin_port;
};

extern int inet_aton ( const char *cp, struct in_addr *inp );
extern char * inet_ntoa ( struct in_addr in );

#endif	/* _IN_H */