From 698a51085c3f95b3ee9275946a002bac4f001381 Mon Sep 17 00:00:00 2001 From: simon Date: Wed, 18 Oct 2000 15:33:05 +0000 Subject: [PATCH] Add some more commented-out diagnostics for ssh1 git-svn-id: svn://svn.tartarus.org/sgt/putty@713 cda61777-01e9-0310-a592-d414129be87e --- ssh.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/ssh.c b/ssh.c index 342bc53a..00958356 100644 --- a/ssh.c +++ b/ssh.c @@ -392,6 +392,12 @@ next_packet: if (cipher) cipher->decrypt(pktin.data, st->biglen); +#if 0 + debug(("Got packet len=%d pad=%d\r\n", st->len, st->pad)); + for (st->i = 0; st->i < st->biglen; st->i++) + debug((" %02x", (unsigned char)pktin.data[st->i])); + debug(("\r\n")); +#endif pktin.type = pktin.data[st->pad]; pktin.body = pktin.data + st->pad + 1; @@ -599,6 +605,12 @@ static void s_wrpkt(void) { PUT_32BIT(pktout.data+biglen, crc); PUT_32BIT(pktout.data, len); +#if 0 + debug(("Sending packet len=%d\r\n", biglen+4)); + for (i = 0; i < biglen+4; i++) + debug((" %02x", (unsigned char)pktout.data[i])); + debug(("\r\n")); +#endif if (cipher) cipher->encrypt(pktout.data+4, biglen); -- 2.11.0