diff options
| author | thorpej <thorpej@NetBSD.org> | 1997-12-11 07:00:01 +0000 |
|---|---|---|
| committer | thorpej <thorpej@NetBSD.org> | 1997-12-11 07:00:01 +0000 |
| commit | 76de9752ddcdfe2b54310503094635e80b3ba802 (patch) | |
| tree | 55f671576b2d1e974cddc3190e28980f46cdcc22 | |
| parent | 3026b32ab3d66b92f6c12ddd8463aba074231136 (diff) | |
Print window updates delayed (piggybacked on delayed ACKs).
| -rw-r--r-- | usr.bin/netstat/inet.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/netstat/inet.c b/usr.bin/netstat/inet.c index 96dfbb1120a..cb4de9deff8 100644 --- a/usr.bin/netstat/inet.c +++ b/usr.bin/netstat/inet.c @@ -1,4 +1,4 @@ -/* $NetBSD: inet.c,v 1.24 1997/12/10 07:26:02 thorpej Exp $ */ +/* $NetBSD: inet.c,v 1.25 1997/12/11 07:00:01 thorpej Exp $ */ /* * Copyright (c) 1983, 1988, 1993 @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "from: @(#)inet.c 8.4 (Berkeley) 4/20/94"; #else -__RCSID("$NetBSD: inet.c,v 1.24 1997/12/10 07:26:02 thorpej Exp $"); +__RCSID("$NetBSD: inet.c,v 1.25 1997/12/11 07:00:01 thorpej Exp $"); #endif #endif /* not lint */ @@ -194,6 +194,7 @@ tcp_stats(off, name) p(tcps_sndurg, "\t\t%lu URG only packet%s\n"); p(tcps_sndprobe, "\t\t%lu window probe packet%s\n"); p(tcps_sndwinup, "\t\t%lu window update packet%s\n"); + p(tcps_delwin, "\t\t%lu window update%s delayed\n"); p(tcps_sndctrl, "\t\t%lu control packet%s\n"); p(tcps_rcvtotal, "\t%lu packet%s received\n"); p2(tcps_rcvackpack, tcps_rcvackbyte, "\t\t%lu ack%s (for %lu byte%s)\n"); |
