[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.296 and 1.297

version 1.296, 2017/05/03 21:08:09 version 1.297, 2017/05/30 14:23:52
Line 451 
Line 451 
 }  }
   
 static int  static int
 client_global_request_reply(int type, u_int32_t seq, void *ctxt)  client_global_request_reply(int type, u_int32_t seq, struct ssh *ssh)
 {  {
         struct global_confirm *gc;          struct global_confirm *gc;
   
Line 1627 
Line 1627 
   
 /* XXXX move to generic input handler */  /* XXXX move to generic input handler */
 static int  static int
 client_input_channel_open(int type, u_int32_t seq, void *ctxt)  client_input_channel_open(int type, u_int32_t seq, struct ssh *ssh)
 {  {
         Channel *c = NULL;          Channel *c = NULL;
         char *ctype;          char *ctype;
Line 1683 
Line 1683 
 }  }
   
 static int  static int
 client_input_channel_req(int type, u_int32_t seq, void *ctxt)  client_input_channel_req(int type, u_int32_t seq, struct ssh *ssh)
 {  {
         Channel *c = NULL;          Channel *c = NULL;
         int exitval, id, reply, success = 0;          int exitval, id, reply, success = 0;
Line 1691 
Line 1691 
   
         id = packet_get_int();          id = packet_get_int();
         c = channel_lookup(id);          c = channel_lookup(id);
         if (channel_proxy_upstream(c, type, seq, ctxt))          if (channel_proxy_upstream(c, type, seq, ssh))
                 return 0;                  return 0;
         rtype = packet_get_string(NULL);          rtype = packet_get_string(NULL);
         reply = packet_get_char();          reply = packet_get_char();
Line 2121 
Line 2121 
 }  }
   
 static int  static int
 client_input_global_request(int type, u_int32_t seq, void *ctxt)  client_input_global_request(int type, u_int32_t seq, struct ssh *ssh)
 {  {
         char *rtype;          char *rtype;
         int want_reply;          int want_reply;

Legend:
Removed from v.1.296  
changed lines
  Added in v.1.297