[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.160 and 1.161

version 1.160, 2006/03/25 13:17:01 version 1.161, 2006/03/25 18:30:55
Line 578 
Line 578 
 }  }
   
 static void  static void
 client_process_net_input(fd_set * readset)  client_process_net_input(fd_set *readset)
 {  {
         int len;          int len;
         char buf[8192];          char buf[8192];
Line 686 
Line 686 
 }  }
   
 static void  static void
 client_process_control(fd_set * readset)  client_process_control(fd_set *readset)
 {  {
         Buffer m;          Buffer m;
         Channel *c;          Channel *c;
Line 1180 
Line 1180 
 }  }
   
 static void  static void
 client_process_input(fd_set * readset)  client_process_input(fd_set *readset)
 {  {
         int len;          int len;
         char buf[8192];          char buf[8192];
Line 1233 
Line 1233 
 }  }
   
 static void  static void
 client_process_output(fd_set * writeset)  client_process_output(fd_set *writeset)
 {  {
         int len;          int len;
         char buf[100];          char buf[100];

Legend:
Removed from v.1.160  
changed lines
  Added in v.1.161