diff options
author | Matt Johnston <matt@ucc.asn.au> | 2014-08-13 21:48:47 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2014-08-13 21:48:47 +0800 |
commit | 10eb218fb022f435d75fa6e8e6fc6234e66f31b9 (patch) | |
tree | 09f7bc6c2ea44685ca1af2de59a80ced4783cc8c /common-session.c | |
parent | bfb2b30de6332e202e4ce95f5e7cae6190e73fa3 (diff) |
Don't send SSH_MSG_UNIMPLEMENTED for keepalive responses
Diffstat (limited to 'common-session.c')
-rw-r--r-- | common-session.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common-session.c b/common-session.c index cebd787..ee5f1e9 100644 --- a/common-session.c +++ b/common-session.c @@ -394,6 +394,11 @@ static int ident_readln(int fd, char* buf, int count) { return pos+1; } +void ignore_recv_msg_request_failure() { + // Do nothing + TRACE(("Ignored msg_request_failure")) +} + static void send_msg_keepalive() { CHECKCLEARTOWRITE(); time_t old_time_idle = ses.last_packet_time_idle; |