diff options
| author | Szabolcs Nagy <nsz@port70.net> | 2014-07-20 16:09:33 +0200 | 
|---|---|---|
| committer | Szabolcs Nagy <nsz@port70.net> | 2014-07-20 18:45:43 +0200 | 
| commit | 6119fa32698b6e1f79564c2a30d81b179f48c156 (patch) | |
| tree | 28f3bd817d776489af073c6dc109622531715dea | |
| parent | 4a142db74f128011e7afafd19607234243f908ff (diff) | |
| download | musl-6119fa32698b6e1f79564c2a30d81b179f48c156.tar.gz | |
add pacing rate information to the tcp_info struct in tcp.h
used by monitoring applications such as ss from iproute2
introduced in linux 3.15 commit 977cb0ecf82eb6d15562573c31edebf90db35163
| -rw-r--r-- | include/netinet/tcp.h | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/include/netinet/tcp.h b/include/netinet/tcp.h index d3db0421..52358c75 100644 --- a/include/netinet/tcp.h +++ b/include/netinet/tcp.h @@ -162,6 +162,8 @@ struct tcp_info  	uint32_t tcpi_rcv_rtt;  	uint32_t tcpi_rcv_space;  	uint32_t tcpi_total_retrans; +	uint64_t tcpi_pacing_rate; +	uint64_t tcpi_max_pacing_rate;  };  #define TCP_MD5SIG_MAXKEYLEN    80 | 
