Lines Matching refs:tcp_info
3393 dump_tcp_info(struct tcp_info *tcp_info) in dump_tcp_info() argument
3400 tcp_info->tcpi_rto, in dump_tcp_info()
3401 tcp_info->tcpi_ato, in dump_tcp_info()
3402 tcp_info->tcpi_pmtu, in dump_tcp_info()
3403 tcp_info->tcpi_rcv_ssthresh, in dump_tcp_info()
3404 tcp_info->tcpi_rtt, in dump_tcp_info()
3405 tcp_info->tcpi_rttvar, in dump_tcp_info()
3406 tcp_info->tcpi_snd_ssthresh, in dump_tcp_info()
3407 tcp_info->tcpi_snd_cwnd, in dump_tcp_info()
3408 tcp_info->tcpi_reordering, in dump_tcp_info()
3409 tcp_info->tcpi_total_retrans); in dump_tcp_info()
3420 struct tcp_info tcp_info; in get_transport_retrans() local
3428 infosize = sizeof(struct tcp_info); in get_transport_retrans()
3430 if ((ret = getsockopt(socket,protocol,TCP_INFO,&tcp_info,&infosize)) < 0) { in get_transport_retrans()
3445 dump_tcp_info(&tcp_info); in get_transport_retrans()
3447 return tcp_info.tcpi_total_retrans; in get_transport_retrans()