[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.141.2.2 and 1.141.2.3

version 1.141.2.2, 2006/10/06 03:19:32 version 1.141.2.3, 2006/11/08 00:44:05
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.141.2.2  
changed lines
  Added in v.1.141.2.3