[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.213 and 1.214

version 1.213, 2009/07/05 19:28:33 version 1.214, 2009/10/24 11:15:29
Line 153 
Line 153 
 static void client_init_dispatch(void);  static void client_init_dispatch(void);
 int     session_ident = -1;  int     session_ident = -1;
   
   int     session_resumed = 0;
   
 /* Track escape per proto2 channel */  /* Track escape per proto2 channel */
 struct escape_filter_ctx {  struct escape_filter_ctx {
         int escape_pending;          int escape_pending;
Line 1446 
Line 1448 
                          * the connection is processed elsewhere (above).                           * the connection is processed elsewhere (above).
                          */                           */
                         client_process_output(writeset);                          client_process_output(writeset);
                   }
   
                   if (session_resumed) {
                           connection_in = packet_get_connection_in();
                           connection_out = packet_get_connection_out();
                           max_fd = MAX(max_fd, connection_out);
                           max_fd = MAX(max_fd, connection_in);
                           session_resumed = 0;
                 }                  }
   
                 /*                  /*

Legend:
Removed from v.1.213  
changed lines
  Added in v.1.214