Usermode/libpsocket - Fixed accept()'s prototype
[tpg/acess2.git] / Usermode / Libraries / libpsocket.so_src / include_exp / netinet / in.h
index 33e7865..94655e1 100644 (file)
@@ -1,6 +1,14 @@
+/*
+ * Acess2 POSIX Sockets Emulation
+ * - By John Hodge (thePowersGang)
+ *
+ * netinet/in.h
+ * - ?Addressing?
+ */
 #ifndef _LIBPSOCKET__NETINET__IN_H_
 #define _LIBPSOCKET__NETINET__IN_H_
 
+#include <sys/socket.h>        // sa_family_t
 #include <stdint.h>
 
 typedef uint32_t       in_addr_t;
@@ -12,7 +20,7 @@ struct in_addr
 
 struct sockaddr_in
 {
-       uint16_t        sin_family;
+       sa_family_t     sin_family;
        uint16_t        sin_port;
        struct in_addr  sin_addr;
 };
@@ -20,6 +28,9 @@ struct sockaddr_in
 #define INADDR_ANY     0x00000000
 #define INADDR_BROADCAST       0xFFFFFFFF
 
+#define IPPORT_RESERVED        1024
+#define IPPORT_UNRESERVED      0xC000
+
 // getsockopt/setsockopt(level)
 enum {
        IPPROTO_IP = 1,
@@ -35,7 +46,7 @@ struct in6_addr
 
 struct sockaddr_in6
 {
-       uint16_t        sin6_family;
+       sa_family_t     sin6_family;
        uint16_t        sin6_port;
        uint32_t        sin6_flowinfo;
        struct in6_addr sin6_addr;

UCC git Repository :: git.ucc.asn.au