about summary refs log tree commit diff
path: root/include/netinet
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-05-22 21:52:08 -0400
committerRich Felker <dalias@aerifal.cx>2012-05-22 21:52:08 -0400
commit419ae6d5c95629d3ebaff6f1880d52cb027ba924 (patch)
tree9e38522b2d54cdaa3c282f3effb3daac06509edc /include/netinet
parent7b5467cbae266d9cf91404a13c9b6b6e1d9b8204 (diff)
downloadmusl-419ae6d5c95629d3ebaff6f1880d52cb027ba924.tar.gz
musl-419ae6d5c95629d3ebaff6f1880d52cb027ba924.tar.xz
musl-419ae6d5c95629d3ebaff6f1880d52cb027ba924.zip
support _BSD_SOURCE feature test macro
patch by Isaac Dunham. matched closely (maybe not exact) to glibc's
idea of what _BSD_SOURCE should make visible.
Diffstat (limited to 'include/netinet')
-rw-r--r--include/netinet/tcp.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/netinet/tcp.h b/include/netinet/tcp.h
index c8a1a4bc..797ce688 100644
--- a/include/netinet/tcp.h
+++ b/include/netinet/tcp.h
@@ -2,5 +2,22 @@
 #define _NETINET_TCP_H
 
 #define TCP_NODELAY 1
+#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
+#include <sys/types.h>
+#include <sys/socket.h>
+#define TCP_MAXSEG	 2
+#define TCP_CORK	 3
+#define TCP_KEEPIDLE	 4
+#define TCP_KEEPINTVL	 5
+#define TCP_KEEPCNT	 6
+#define TCP_SYNCNT	 7
+#define TCP_LINGER2	 8
+#define TCP_DEFER_ACCEPT 9
+#define TCP_WINDOW_CLAMP 10
+#define TCP_INFO	 11
+#define	TCP_QUICKACK	 12
+#define TCP_CONGESTION	 13
+#define TCP_MD5SIG	 14
+#endif
 
 #endif