about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-04-21 15:23:09 -0700
committerAlex Crichton <alex@alexcrichton.com>2015-04-21 15:23:09 -0700
commit6b1ce4957401d561da02973260b58a4fe58a1ebc (patch)
tree8eb049bcf9a30033725687c5ebcc1ce6e4d94bb4 /src
parenta63df9218ef6de305f19825ba822b62352041df7 (diff)
parent7a0df61ab10d72b0c92480192d98938261854676 (diff)
downloadrust-6b1ce4957401d561da02973260b58a4fe58a1ebc.tar.gz
rust-6b1ce4957401d561da02973260b58a4fe58a1ebc.zip
rollup merge of #24611: doomsplayer/doomsplayer-patch-1
as dependency for #24594
Diffstat (limited to 'src')
-rw-r--r--src/liblibc/lib.rs24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/liblibc/lib.rs b/src/liblibc/lib.rs
index 24a4a457224..4fbcdaa378e 100644
--- a/src/liblibc/lib.rs
+++ b/src/liblibc/lib.rs
@@ -3536,6 +3536,30 @@ pub mod consts {
             pub const IPV6_DROP_MEMBERSHIP: c_int = 21;
 
             pub const TCP_NODELAY: c_int = 1;
+            pub const TCP_MAXSEG: c_int = 2;
+            pub const TCP_CORK: c_int = 3;
+            pub const TCP_KEEPIDLE: c_int = 4;
+            pub const TCP_KEEPINTVL: c_int = 5;
+            pub const TCP_KEEPCNT: c_int = 6;
+            pub const TCP_SYNCNT: c_int = 7;
+            pub const TCP_LINGER2: c_int = 8;
+            pub const TCP_DEFER_ACCEPT: c_int = 9;
+            pub const TCP_WINDOW_CLAMP: c_int = 10;
+            pub const TCP_INFO: c_int = 11;
+            pub const TCP_QUICKACK: c_int = 12;
+            pub const TCP_CONGESTION: c_int = 13;
+            pub const TCP_MD5SIG: c_int = 14;
+            pub const TCP_COOKIE_TRANSACTIONS: c_int = 15;
+            pub const TCP_THIN_LINEAR_TIMEOUTS: c_int = 16;
+            pub const TCP_THIN_DUPACK: c_int = 17;
+            pub const TCP_USER_TIMEOUT: c_int = 18;
+            pub const TCP_REPAIR: c_int = 19;
+            pub const TCP_REPAIR_QUEUE: c_int = 20;
+            pub const TCP_QUEUE_SEQ: c_int = 21;
+            pub const TCP_REPAIR_OPTIONS: c_int = 22;
+            pub const TCP_FASTOPEN: c_int = 23;
+            pub const TCP_TIMESTAMP: c_int = 24;
+
             pub const SOL_SOCKET: c_int = 1;
 
             pub const SO_DEBUG: c_int = 1;