diff options
author | Colin Watson <cjwatson@debian.org> | 2014-02-09 16:09:51 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2014-03-19 16:40:05 +0000 |
commit | 40a23637b9cb6364c8baeb2c25b1d8115bc740c0 (patch) | |
tree | 1657084ef56c0729a0379806a2c9450b495d6bc0 | |
parent | 9ae199bbd2484aed4fd61535221a96f1ae478712 (diff) |
Partial server keep-alive implementation for SSH1
Bug: https://bugzilla.mindrot.org/show_bug.cgi?id=1712
Last-Update: 2013-09-14
Patch-Name: ssh1-keepalive.patch
-rw-r--r-- | clientloop.c | 25 | ||||
-rw-r--r-- | ssh_config.5 | 5 |
2 files changed, 19 insertions, 11 deletions
diff --git a/clientloop.c b/clientloop.c index cc23e355e..cd1739f10 100644 --- a/clientloop.c +++ b/clientloop.c | |||
@@ -563,16 +563,21 @@ client_global_request_reply(int type, u_int32_t seq, void *ctxt) | |||
563 | static void | 563 | static void |
564 | server_alive_check(void) | 564 | server_alive_check(void) |
565 | { | 565 | { |
566 | if (packet_inc_alive_timeouts() > options.server_alive_count_max) { | 566 | if (compat20) { |
567 | logit("Timeout, server %s not responding.", host); | 567 | if (packet_inc_alive_timeouts() > options.server_alive_count_max) { |
568 | cleanup_exit(255); | 568 | logit("Timeout, server %s not responding.", host); |
569 | cleanup_exit(255); | ||
570 | } | ||
571 | packet_start(SSH2_MSG_GLOBAL_REQUEST); | ||
572 | packet_put_cstring("keepalive@openssh.com"); | ||
573 | packet_put_char(1); /* boolean: want reply */ | ||
574 | packet_send(); | ||
575 | /* Insert an empty placeholder to maintain ordering */ | ||
576 | client_register_global_confirm(NULL, NULL); | ||
577 | } else { | ||
578 | packet_send_ignore(0); | ||
579 | packet_send(); | ||
569 | } | 580 | } |
570 | packet_start(SSH2_MSG_GLOBAL_REQUEST); | ||
571 | packet_put_cstring("keepalive@openssh.com"); | ||
572 | packet_put_char(1); /* boolean: want reply */ | ||
573 | packet_send(); | ||
574 | /* Insert an empty placeholder to maintain ordering */ | ||
575 | client_register_global_confirm(NULL, NULL); | ||
576 | } | 581 | } |
577 | 582 | ||
578 | /* | 583 | /* |
@@ -634,7 +639,7 @@ client_wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp, | |||
634 | */ | 639 | */ |
635 | 640 | ||
636 | timeout_secs = INT_MAX; /* we use INT_MAX to mean no timeout */ | 641 | timeout_secs = INT_MAX; /* we use INT_MAX to mean no timeout */ |
637 | if (options.server_alive_interval > 0 && compat20) { | 642 | if (options.server_alive_interval > 0) { |
638 | timeout_secs = options.server_alive_interval; | 643 | timeout_secs = options.server_alive_interval; |
639 | server_alive_time = now + options.server_alive_interval; | 644 | server_alive_time = now + options.server_alive_interval; |
640 | } | 645 | } |
diff --git a/ssh_config.5 b/ssh_config.5 index 49505ae9c..617a312d0 100644 --- a/ssh_config.5 +++ b/ssh_config.5 | |||
@@ -1288,7 +1288,10 @@ If, for example, | |||
1288 | .Cm ServerAliveCountMax | 1288 | .Cm ServerAliveCountMax |
1289 | is left at the default, if the server becomes unresponsive, | 1289 | is left at the default, if the server becomes unresponsive, |
1290 | ssh will disconnect after approximately 45 seconds. | 1290 | ssh will disconnect after approximately 45 seconds. |
1291 | This option applies to protocol version 2 only. | 1291 | This option applies to protocol version 2 only; in protocol version |
1292 | 1 there is no mechanism to request a response from the server to the | ||
1293 | server alive messages, so disconnection is the responsibility of the TCP | ||
1294 | stack. | ||
1292 | .It Cm ServerAliveInterval | 1295 | .It Cm ServerAliveInterval |
1293 | Sets a timeout interval in seconds after which if no data has been received | 1296 | Sets a timeout interval in seconds after which if no data has been received |
1294 | from the server, | 1297 | from the server, |