[BACK]Return to clientloop.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/clientloop.c between version 1.175 and 1.175.4.1

version 1.175, 2006/08/03 03:34:42 version 1.175.4.1, 2006/11/08 00:42:10
Line 456 
Line 456 
 static void  static void
 server_alive_check(void)  server_alive_check(void)
 {  {
         if (++server_alive_timeouts > options.server_alive_count_max)          if (++server_alive_timeouts > options.server_alive_count_max) {
                 packet_disconnect("Timeout, server not responding.");                  logit("Timeout, server not responding.");
                   cleanup_exit(255);
           }
         packet_start(SSH2_MSG_GLOBAL_REQUEST);          packet_start(SSH2_MSG_GLOBAL_REQUEST);
         packet_put_cstring("keepalive@openssh.com");          packet_put_cstring("keepalive@openssh.com");
         packet_put_char(1);     /* boolean: want reply */          packet_put_char(1);     /* boolean: want reply */

Legend:
Removed from v.1.175  
changed lines
  Added in v.1.175.4.1