]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Add TCP_REPAIR_WINDOW from Linux 4.8.
authorJoseph Myers <joseph@codesourcery.com>
Mon, 3 Oct 2016 21:01:42 +0000 (21:01 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Mon, 3 Oct 2016 21:01:42 +0000 (21:01 +0000)
Linux 4.8 adds TCP_REPAIR_WINDOW to include/uapi/linux/tcp.h.  This
patch adds it to sysdeps/gnu/netinet/tcp.h accordingly, along with
struct tcp_repair_window as requested in
<https://sourceware.org/ml/libc-alpha/2016-10/msg00019.html>.

Tested for x86_64 and x86 (testsuite, and that installed shared
libraries are unchanged by the patch).

* sysdeps/gnu/netinet/tcp.h (TCP_REPAIR_WINDOW): New macro.
(struct tcp_repair_window): New type.

ChangeLog
sysdeps/gnu/netinet/tcp.h

index ac585578e8a72a57350a1223d9a5f780693b6585..9c9aa8f952ba6dfb51e4fff738ee4e39af00df56 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2016-10-03  Joseph Myers  <joseph@codesourcery.com>
+
+       * sysdeps/gnu/netinet/tcp.h (TCP_REPAIR_WINDOW): New macro.
+       (struct tcp_repair_window): New type.
+
 2016-10-02  Adhemerval Zanella  <adhemerval.zanella@linaro.org>
 
        * libio/tst-memstream3.c: Include string.h.
index 3fbea54daf083bd0f4ba91ef0b0746b63b5c1535..241bdc70db4090522c38e077c1c8eec2a0ceb289 100644 (file)
@@ -69,6 +69,7 @@
                                       connections.  */
 #define TCP_SAVED_SYN           28 /* Get SYN headers recorded for
                                       connection.  */
+#define TCP_REPAIR_WINDOW       29 /* Get/set window parameters.  */
 
 #ifdef __USE_MISC
 # include <sys/types.h>
@@ -307,6 +308,16 @@ struct tcp_cookie_transactions
   uint8_t      tcpct_value[TCP_MSS_DEFAULT];
 };
 
+/* For use with TCP_REPAIR_WINDOW.  */
+struct tcp_repair_window
+{
+  uint32_t snd_wl1;
+  uint32_t snd_wnd;
+  uint32_t max_window;
+  uint32_t rcv_wnd;
+  uint32_t rcv_wup;
+};
+
 #endif /* Misc.  */
 
 #endif /* netinet/tcp.h */