update tcp_info struct to linux v4.9

export tcp data delivery rate in tcp_info struct.
see linux commit eb8329e0a04db0061f714f033b4454326ba147f4
This commit is contained in:
Szabolcs Nagy 2016-12-25 10:43:42 +01:00 committed by Rich Felker
parent a8a8fdff96
commit 60c46db80b

View File

@ -154,6 +154,7 @@ struct tcp_info {
uint8_t tcpi_backoff;
uint8_t tcpi_options;
uint8_t tcpi_snd_wscale : 4, tcpi_rcv_wscale : 4;
uint8_t tcpi_delivery_rate_app_limited : 1;
uint32_t tcpi_rto;
uint32_t tcpi_ato;
uint32_t tcpi_snd_mss;
@ -188,6 +189,7 @@ struct tcp_info {
uint32_t tcpi_min_rtt;
uint32_t tcpi_data_segs_in;
uint32_t tcpi_data_segs_out;
uint64_t tcpi_delivery_rate;
};
#define TCP_MD5SIG_MAXKEYLEN 80