BarryServer : Git

All the code for all my projects
// BarryServer : Git / OrionLibC / blob / master / include / arpa / inet.h

// Related

OrionLibC

Barry Importing existing Orion LibC 03048a9 (2 years, 2 months ago)
#ifndef _ARPA_INET_H
#define _ARPA_INET_H

typedef struct InAddr {
	uint32_t addr;
} InAddr;

typedef struct SockAddrIn {
	int16_t family;
	uint16_t port;
	InAddr inAddr;
	char zero[8];
} SockAddrIn;

#endif