[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.90 and 1.91

version 1.90, 2001/12/19 07:18:56 version 1.91, 2001/12/20 22:50:24
Line 1008 
Line 1008 
 /*********/  /*********/
   
 static void  static void
 client_input_stdout_data(int type, int plen, void *ctxt)  client_input_stdout_data(int type, int plen, u_int32_t seq, void *ctxt)
 {  {
         u_int data_len;          u_int data_len;
         char *data = packet_get_string(&data_len);          char *data = packet_get_string(&data_len);
Line 1018 
Line 1018 
         xfree(data);          xfree(data);
 }  }
 static void  static void
 client_input_stderr_data(int type, int plen, void *ctxt)  client_input_stderr_data(int type, int plen, u_int32_t seq, void *ctxt)
 {  {
         u_int data_len;          u_int data_len;
         char *data = packet_get_string(&data_len);          char *data = packet_get_string(&data_len);
Line 1028 
Line 1028 
         xfree(data);          xfree(data);
 }  }
 static void  static void
 client_input_exit_status(int type, int plen, void *ctxt)  client_input_exit_status(int type, int plen, u_int32_t seq, void *ctxt)
 {  {
         packet_integrity_check(plen, 4, type);          packet_integrity_check(plen, 4, type);
         exit_status = packet_get_int();          exit_status = packet_get_int();
Line 1149 
Line 1149 
   
 /* XXXX move to generic input handler */  /* XXXX move to generic input handler */
 static void  static void
 client_input_channel_open(int type, int plen, void *ctxt)  client_input_channel_open(int type, int plen, u_int32_t seq, void *ctxt)
 {  {
         Channel *c = NULL;          Channel *c = NULL;
         char *ctype;          char *ctype;
Line 1201 
Line 1201 
         xfree(ctype);          xfree(ctype);
 }  }
 static void  static void
 client_input_channel_req(int type, int plen, void *ctxt)  client_input_channel_req(int type, int plen, u_int32_t seq, void *ctxt)
 {  {
         Channel *c = NULL;          Channel *c = NULL;
         int id, reply, success = 0;          int id, reply, success = 0;

Legend:
Removed from v.1.90  
changed lines
  Added in v.1.91