=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tcpbench/tcpbench.c,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- src/usr.bin/tcpbench/tcpbench.c 2010/09/28 12:00:35 1.18 +++ src/usr.bin/tcpbench/tcpbench.c 2010/10/19 10:03:23 1.19 @@ -91,8 +91,10 @@ static const char *allowed_kvars[] = { "inpcb.inp_flags", "sockb.so_rcv.sb_cc", + "sockb.so_rcv.sb_wat", "sockb.so_rcv.sb_hiwat", "sockb.so_snd.sb_cc", + "sockb.so_snd.sb_wat", "sockb.so_snd.sb_hiwat", "tcpcb.snd_una", "tcpcb.snd_nxt", @@ -115,6 +117,10 @@ "tcpcb.snd_scale", "tcpcb.rcv_scale", "tcpcb.last_ack_sent", + "tcpcb.rfbuf_cnt", + "tcpcb.rfbuf_ts", + "tcpcb.ts_recent_age", + "tcpcb.ts_recent", NULL }; @@ -419,8 +425,10 @@ } P(inpcb, inp_flags, "0x%08x") P(sockb, so_rcv.sb_cc, "%lu") + P(sockb, so_rcv.sb_wat, "%lu") P(sockb, so_rcv.sb_hiwat, "%lu") P(sockb, so_snd.sb_cc, "%lu") + P(sockb, so_snd.sb_wat, "%lu") P(sockb, so_snd.sb_hiwat, "%lu") P(tcpcb, snd_una, "%u") P(tcpcb, snd_nxt, "%u") @@ -443,6 +451,10 @@ P(tcpcb, snd_scale, "%u") P(tcpcb, rcv_scale, "%u") P(tcpcb, last_ack_sent, "%u") + P(tcpcb, rfbuf_cnt, "%u") + P(tcpcb, rfbuf_ts, "%u") + P(tcpcb, ts_recent_age, "%u") + P(tcpcb, ts_recent, "%u") #undef S #undef P }