From 196da4ec6f429683a351312d1f0bcb05847e7f89 Mon Sep 17 00:00:00 2001 From: cinap_lenrek Date: Sun, 18 Nov 2018 04:14:41 +0100 Subject: [PATCH] devip: fix swapped tcp snd.scale and recv.scale in tcpstate() format (thanks joe9) --- sys/src/9/ip/tcp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/src/9/ip/tcp.c b/sys/src/9/ip/tcp.c index 467cd550d..3989ce437 100644 --- a/sys/src/9/ip/tcp.c +++ b/sys/src/9/ip/tcp.c @@ -497,7 +497,7 @@ tcpstate(Conv *c, char *state, int n) c->wq ? qlen(c->wq) : 0, s->nreseq, s->reseqlen, s->srtt, s->mdev, s->ssthresh, - s->cwind, s->snd.wnd, s->rcv.scale, s->rcv.wnd, s->snd.scale, + s->cwind, s->snd.wnd, s->snd.scale, s->rcv.wnd, s->rcv.scale, s->qscale, s->timer.start, s->timer.count, s->rerecv, s->katimer.start, s->katimer.count);