summaryrefslogtreecommitdiff
path: root/sysdeps/gnu
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-02-07 18:46:03 +0000
committerUlrich Drepper <drepper@redhat.com>2001-02-07 18:46:03 +0000
commit054d2bf7cc2fdc42ae29fae933fe30e0f121c308 (patch)
tree20d68dabe4640f57006fe98accde6c0e88c6e90c /sysdeps/gnu
parent0d3fee40893b9a1f52a3c1e4ec3b27f5f5053750 (diff)
Update.
2001-02-07 Ulrich Drepper <drepper@redhat.com> * sysdeps/gnu/netinet/tcp.h: Correct values of TCP_ macros. Patch by Pekka.Pietikainen@cern.ch. * posix/regex.c: Correct several problems with 64-bit architectures introduced in the MBS changes. Patch by Isamu Hasegawa <isamu@yamato.ibm.com>. 2001-02-07 Jakub Jelinek <jakub@redhat.com> * math/tgmath.h: Only add l suffixes if __NO_LONG_DOUBLE_MATH is not defined. * sysdeps/alpha/fpu/bits/mathinline.h: Honour __NO_MATH_INLINES.
Diffstat (limited to 'sysdeps/gnu')
-rw-r--r--sysdeps/gnu/netinet/tcp.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/sysdeps/gnu/netinet/tcp.h b/sysdeps/gnu/netinet/tcp.h
index cafb6b1880..076e332c18 100644
--- a/sysdeps/gnu/netinet/tcp.h
+++ b/sysdeps/gnu/netinet/tcp.h
@@ -37,17 +37,17 @@
/*
* User-settable options (used with setsockopt).
*/
-#define TCP_NODELAY 0x01 /* Don't delay send to coalesce packets */
-#define TCP_MAXSEG 0x02 /* Set maximum segment size */
-#define TCP_CORK 0x03 /* Control sending of partial frames */
-#define TCP_KEEPIDLE 0x04 /* Start keeplives after this period */
-#define TCP_KEEPINTVL 0x05 /* Interval between keepalives */
-#define TCP_KEEPCNT 0x06 /* Number of keepalives before death */
-#define TCP_SYNCNT 0x07 /* Number of SYN retransmits */
-#define TCP_LINGER2 0x08 /* Life time of orphaned FIN-WAIT-2 state */
-#define TCP_DEFER_ACCEPT 0x09 /* Wake up listener only when data arrive */
-#define TCP_WINDOW_CLAMP 0x10 /* Bound advertised window */
-#define TCP_INFO 0x11 /* Information about this connection. */
+#define TCP_NODELAY 1 /* Don't delay send to coalesce packets */
+#define TCP_MAXSEG 2 /* Set maximum segment size */
+#define TCP_CORK 3 /* Control sending of partial frames */
+#define TCP_KEEPIDLE 4 /* Start keeplives after this period */
+#define TCP_KEEPINTVL 5 /* Interval between keepalives */
+#define TCP_KEEPCNT 6 /* Number of keepalives before death */
+#define TCP_SYNCNT 7 /* Number of SYN retransmits */
+#define TCP_LINGER2 8 /* Life time of orphaned FIN-WAIT-2 state */
+#define TCP_DEFER_ACCEPT 9 /* Wake up listener only when data arrive */
+#define TCP_WINDOW_CLAMP 10 /* Bound advertised window */
+#define TCP_INFO 11 /* Information about this connection. */
#ifdef __USE_MISC
# include <sys/types.h>