diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1998-08-17 01:05:25 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1998-08-17 01:05:25 +0000 |
| commit | 162886e237704544bdbe7272798feedf3edb461c (patch) | |
| tree | 9c0f165d0e359e6b8b31b2ed925c6a6cfdd62d22 /sys/netinet/tcp_debug.c | |
| parent | 138d060a6ed7b323783231db622a8368534ca754 (diff) | |
Notes
Diffstat (limited to 'sys/netinet/tcp_debug.c')
| -rw-r--r-- | sys/netinet/tcp_debug.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/sys/netinet/tcp_debug.c b/sys/netinet/tcp_debug.c index d7a1d4ea247d..c82049e559fa 100644 --- a/sys/netinet/tcp_debug.c +++ b/sys/netinet/tcp_debug.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)tcp_debug.c 8.1 (Berkeley) 6/10/93 - * $Id: tcp_debug.c,v 1.11 1997/09/16 18:36:04 joerg Exp $ + * $Id: tcp_debug.c,v 1.12 1998/01/08 23:41:53 eivind Exp $ */ #include "opt_inet.h" @@ -155,10 +155,11 @@ tcp_trace(act, ostate, tp, ti, req) printf("\n"); if (tp == 0) return; - printf("\trcv_(nxt,wnd,up) (%x,%x,%x) snd_(una,nxt,max) (%x,%x,%x)\n", - tp->rcv_nxt, tp->rcv_wnd, tp->rcv_up, tp->snd_una, tp->snd_nxt, - tp->snd_max); - printf("\tsnd_(wl1,wl2,wnd) (%x,%x,%x)\n", - tp->snd_wl1, tp->snd_wl2, tp->snd_wnd); + printf( + "\trcv_(nxt,wnd,up) (%lx,%lx,%lx) snd_(una,nxt,max) (%lx,%lx,%lx)\n", + (u_long)tp->rcv_nxt, tp->rcv_wnd, (u_long)tp->rcv_up, + (u_long)tp->snd_una, (u_long)tp->snd_nxt, (u_long)tp->snd_max); + printf("\tsnd_(wl1,wl2,wnd) (%lx,%lx,%lx)\n", + (u_long)tp->snd_wl1, (u_long)tp->snd_wl2, tp->snd_wnd); #endif /* TCPDEBUG */ } |
