diff options
author | Matt Johnston <matt@ucc.asn.au> | 2007-08-08 15:12:06 +0000 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2007-08-08 15:12:06 +0000 |
commit | 75ec4d6510aba8780effddb53eee4a0296015608 (patch) | |
tree | cdbb9481b94425022d83d4b00bd2ef6fcfc7dd4b /process-packet.c | |
parent | a7649c250fccd3a901488dc5135c2eca4cc56ef1 (diff) |
- Add -K keepalive flag for dropbear and dbclient
- Try to reduce the frequency of select() timeouts
- Add a max receive window size of 1MB
--HG--
extra : convert_revision : 9aa22036cb511cddb35fbc0e09ad05acb39b64d1
Diffstat (limited to 'process-packet.c')
-rw-r--r-- | process-packet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/process-packet.c b/process-packet.c index ba39d9f..d96c1cb 100644 --- a/process-packet.c +++ b/process-packet.c @@ -56,8 +56,8 @@ void process_packet() { switch(type) { case SSH_MSG_IGNORE: + goto out; case SSH_MSG_DEBUG: - TRACE(("received SSH_MSG_IGNORE or SSH_MSG_DEBUG")) goto out; case SSH_MSG_UNIMPLEMENTED: |