blob: 572987ce25292a1cb1fdc596f9ecb33fe2d1d80a (
plain)
1
2
3
4
5
6
7
8
9
|
#! stap -p4
#
probe begin {
print (tcp_get_info_rto (0) +
tcp_get_info_snd_cwnd (0) +
tcp_ts_get_info_state (0) +
tcp_ts_get_info_snd_ssthresh (0) +
tcp_ts_get_info_rcv_mss (0))
}
|