double pacing_rate_max;
unsigned long long bytes_acked;
unsigned long long bytes_received;
+ unsigned int segs_out;
+ unsigned int segs_in;
unsigned int unacked;
unsigned int retrans;
unsigned int retrans_total;
printf(" bytes_acked:%llu", s->bytes_acked);
if (s->bytes_received)
printf(" bytes_received:%llu", s->bytes_received);
+ if (s->segs_out)
+ printf(" segs_out:%u", s->segs_out);
+ if (s->segs_in)
+ printf(" segs_in:%u", s->segs_in);
if (s->dctcp && s->dctcp->enabled) {
struct dctcpstat *dctcp = s->dctcp;
}
s.bytes_acked = info->tcpi_bytes_acked;
s.bytes_received = info->tcpi_bytes_received;
+ s.segs_out = info->tcpi_segs_out;
+ s.segs_in = info->tcpi_segs_in;
tcp_stats_print(&s);
if (s.dctcp)
free(s.dctcp);