From: Jeffrey Altman Date: Tue, 16 Dec 2008 17:26:03 +0000 (+0000) Subject: DEVEL15-rxdebug-tconn-flags-20081216 X-Git-Tag: openafs-devel-1_5_56~33 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=3762cac6e2ce9c106da1e8c62c843642b4344acd;p=packages%2Fo%2Fopenafs.git DEVEL15-rxdebug-tconn-flags-20081216 LICENSE MIT permit rxdebug to display the RX_CONN_KNOW_WINDOW, RX_CONN_RESET, RX_CONN_BUSY, and RX_CONN_ATTACHWAIT flags --- diff --git a/src/rxdebug/rxdebug.c b/src/rxdebug/rxdebug.c index e66db4ad3..637357b8a 100644 --- a/src/rxdebug/rxdebug.c +++ b/src/rxdebug/rxdebug.c @@ -409,6 +409,14 @@ MainCommand(struct cmd_syndesc *as, void *arock) printf(" DESTROYED"); if (tconn.flags & RX_CONN_USING_PACKET_CKSUM) printf(" pktCksum"); + if (tconn.flags & RX_CONN_KNOW_WINDOW) + printf(" knowWindow"); + if (tconn.flags & RX_CONN_RESET) + printf(" reset"); + if (tconn.flags & RX_CONN_BUSY) + printf(" busy"); + if (tconn.flags & RX_CONN_ATTACHWAIT) + printf(" attachWait"); printf(", "); } printf("security index %d, ", tconn.securityIndex);