[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.281 and 1.282

version 1.281, 2016/01/23 05:31:35 version 1.282, 2016/01/29 23:04:46
Line 160 
Line 160 
 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 1672 
Line 1670 
                          * 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.281  
changed lines
  Added in v.1.282