diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sysdeps/gnu/netinet/tcp.h | 11 |
2 files changed, 16 insertions, 0 deletions
@@ -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. diff --git a/sysdeps/gnu/netinet/tcp.h b/sysdeps/gnu/netinet/tcp.h index 3fbea54daf..241bdc70db 100644 --- a/sysdeps/gnu/netinet/tcp.h +++ b/sysdeps/gnu/netinet/tcp.h @@ -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 */ |