summaryrefslogtreecommitdiffstats
path: root/include/arpa
diff options
context:
space:
mode:
authormike <mike@FreeBSD.org>2002-04-01 08:12:25 +0000
committermike <mike@FreeBSD.org>2002-04-01 08:12:25 +0000
commitbeecc37c73ebf8cf27e26fe5fc3a80fd02535ac4 (patch)
treeeff013810ee5bdc57f51e401f7ec54272cb4fafe /include/arpa
parentf4cfa354ba07ca7cd849efb0cff903ac831f247a (diff)
downloadFreeBSD-src-beecc37c73ebf8cf27e26fe5fc3a80fd02535ac4.zip
FreeBSD-src-beecc37c73ebf8cf27e26fe5fc3a80fd02535ac4.tar.gz
o Implement <sys/_types.h>, a new header for storing types that are
MI, not required to be a fixed size, and used in multiple headers. This will grow in time, as more things move here from <sys/types.h> and <machine/ansi.h>. o Add missing type definitions (uint16_t and uint32_t) to <arpa/inet.h> and <netinet/in.h>. o Reduce pollution in <sys/types.h> by using `#if _FOO_T_DECLARED' widgets to avoid including <sys/stdint.h>. o Add some missing type definitions to <unistd.h> and note the ones that still need to be added. o Make use of <sys/_types.h> primitives in <grp.h> and <sys/types.h>. Reviewed by: bde
Diffstat (limited to 'include/arpa')
-rw-r--r--include/arpa/inet.h34
1 files changed, 20 insertions, 14 deletions
diff --git a/include/arpa/inet.h b/include/arpa/inet.h
index 5a0e814..1a69363 100644
--- a/include/arpa/inet.h
+++ b/include/arpa/inet.h
@@ -72,14 +72,24 @@
#define INET6_ADDRSTRLEN 46
#endif
-#ifndef _IN_ADDR_T_DECLARED_
-typedef __uint32_t in_addr_t;
-#define _IN_ADDR_T_DECLARED_
+#ifndef _UINT16_T_DECLARED
+typedef __uint16_t uint16_t;
+#define _UINT16_T_DECLARED
#endif
-#ifndef _IN_PORT_T_DECLARED_
-typedef __uint16_t in_port_t;
-#define _IN_PORT_T_DECLARED_
+#ifndef _UINT32_T_DECLARED
+typedef __uint32_t uint32_t;
+#define _UINT32_T_DECLARED
+#endif
+
+#ifndef _IN_ADDR_T_DECLARED
+typedef uint32_t in_addr_t;
+#define _IN_ADDR_T_DECLARED
+#endif
+
+#ifndef _IN_PORT_T_DECLARED
+typedef uint16_t in_port_t;
+#define _IN_PORT_T_DECLARED
#endif
#ifndef _POSIX_SOURCE
@@ -105,10 +115,6 @@ struct in_addr {
#define _STRUCT_IN_ADDR_DECLARED
#endif
-/*
- * XXX missing typedefs for uint16_t and uint32_t.
- */
-
/* XXX all new diversions!! argh!! */
#ifndef _POSIX_SOURCE
#define inet_addr __inet_addr
@@ -130,10 +136,10 @@ struct in_addr {
__BEGIN_DECLS
#ifndef _BYTEORDER_PROTOTYPED
#define _BYTEORDER_PROTOTYPED
-__uint32_t htonl(__uint32_t);
-__uint16_t htons(__uint16_t);
-__uint32_t ntohl(__uint32_t);
-__uint16_t ntohs(__uint16_t);
+uint32_t htonl(uint32_t);
+uint16_t htons(uint16_t);
+uint32_t ntohl(uint32_t);
+uint16_t ntohs(uint16_t);
#endif
in_addr_t inet_addr(const char *);
OpenPOWER on IntegriCloud