diff options
| -rw-r--r-- | include/netinet/tcp.h | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/include/netinet/tcp.h b/include/netinet/tcp.h index 584af2f5..2eac793e 100644 --- a/include/netinet/tcp.h +++ b/include/netinet/tcp.h @@ -72,6 +72,10 @@ enum {  	TCP_NLA_SND_SSTHRESH,  	TCP_NLA_DELIVERED,  	TCP_NLA_DELIVERED_CE, +	TCP_NLA_BYTES_SENT, +	TCP_NLA_BYTES_RETRANS, +	TCP_NLA_DSACK_DUPS, +	TCP_NLA_REORD_SEEN,  };  #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) @@ -225,6 +229,10 @@ struct tcp_info {  	uint64_t tcpi_sndbuf_limited;  	uint32_t tcpi_delivered;  	uint32_t tcpi_delivered_ce; +	uint64_t tcpi_bytes_sent; +	uint64_t tcpi_bytes_retrans; +	uint32_t tcpi_dsack_dups; +	uint32_t tcpi_reord_seen;  };  #define TCP_MD5SIG_MAXKEYLEN    80 | 
