[BACK]Return to channels.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/channels.c between version 1.149 and 1.150

version 1.149, 2001/12/20 16:37:29 version 1.150, 2001/12/20 22:50:24
Line 1710 
Line 1710 
 /* -- protocol input */  /* -- protocol input */
   
 void  void
 channel_input_data(int type, int plen, void *ctxt)  channel_input_data(int type, int plen, u_int32_t seq, void *ctxt)
 {  {
         int id;          int id;
         char *data;          char *data;
Line 1756 
Line 1756 
 }  }
   
 void  void
 channel_input_extended_data(int type, int plen, void *ctxt)  channel_input_extended_data(int type, int plen, u_int32_t seq, void *ctxt)
 {  {
         int id;          int id;
         int tcode;          int tcode;
Line 1796 
Line 1796 
 }  }
   
 void  void
 channel_input_ieof(int type, int plen, void *ctxt)  channel_input_ieof(int type, int plen, u_int32_t seq, void *ctxt)
 {  {
         int id;          int id;
         Channel *c;          Channel *c;
Line 1818 
Line 1818 
 }  }
   
 void  void
 channel_input_close(int type, int plen, void *ctxt)  channel_input_close(int type, int plen, u_int32_t seq, void *ctxt)
 {  {
         int id;          int id;
         Channel *c;          Channel *c;
Line 1857 
Line 1857 
   
 /* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */  /* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
 void  void
 channel_input_oclose(int type, int plen, void *ctxt)  channel_input_oclose(int type, int plen, u_int32_t seq, void *ctxt)
 {  {
         int id = packet_get_int();          int id = packet_get_int();
         Channel *c = channel_lookup(id);          Channel *c = channel_lookup(id);
Line 1868 
Line 1868 
 }  }
   
 void  void
 channel_input_close_confirmation(int type, int plen, void *ctxt)  channel_input_close_confirmation(int type, int plen, u_int32_t seq, void *ctxt)
 {  {
         int id = packet_get_int();          int id = packet_get_int();
         Channel *c = channel_lookup(id);          Channel *c = channel_lookup(id);
Line 1884 
Line 1884 
 }  }
   
 void  void
 channel_input_open_confirmation(int type, int plen, void *ctxt)  channel_input_open_confirmation(int type, int plen, u_int32_t seq, void *ctxt)
 {  {
         int id, remote_id;          int id, remote_id;
         Channel *c;          Channel *c;
Line 1934 
Line 1934 
 }  }
   
 void  void
 channel_input_open_failure(int type, int plen, void *ctxt)  channel_input_open_failure(int type, int plen, u_int32_t seq, void *ctxt)
 {  {
         int id, reason;          int id, reason;
         char *msg = NULL, *lang = NULL;          char *msg = NULL, *lang = NULL;
Line 1968 
Line 1968 
 }  }
   
 void  void
 channel_input_channel_request(int type, int plen, void *ctxt)  channel_input_channel_request(int type, int plen, u_int32_t seq, void *ctxt)
 {  {
         int id;          int id;
         Channel *c;          Channel *c;
Line 1993 
Line 1993 
 }  }
   
 void  void
 channel_input_window_adjust(int type, int plen, void *ctxt)  channel_input_window_adjust(int type, int plen, u_int32_t seq, void *ctxt)
 {  {
         Channel *c;          Channel *c;
         int id, adjust;          int id, adjust;
Line 2017 
Line 2017 
 }  }
   
 void  void
 channel_input_port_open(int type, int plen, void *ctxt)  channel_input_port_open(int type, int plen, u_int32_t seq, void *ctxt)
 {  {
         Channel *c = NULL;          Channel *c = NULL;
         u_short host_port;          u_short host_port;
Line 2604 
Line 2604 
  */   */
   
 void  void
 x11_input_open(int type, int plen, void *ctxt)  x11_input_open(int type, int plen, u_int32_t seq, void *ctxt)
 {  {
         Channel *c = NULL;          Channel *c = NULL;
         int remote_id, sock = 0;          int remote_id, sock = 0;
Line 2651 
Line 2651 
   
 /* dummy protocol handler that denies SSH-1 requests (agent/x11) */  /* dummy protocol handler that denies SSH-1 requests (agent/x11) */
 void  void
 deny_input_open(int type, int plen, void *ctxt)  deny_input_open(int type, int plen, u_int32_t seq, void *ctxt)
 {  {
         int rchan = packet_get_int();          int rchan = packet_get_int();
         switch (type) {          switch (type) {
Line 2862 
Line 2862 
 /* This is called to process an SSH_SMSG_AGENT_OPEN message. */  /* This is called to process an SSH_SMSG_AGENT_OPEN message. */
   
 void  void
 auth_input_open_request(int type, int plen, void *ctxt)  auth_input_open_request(int type, int plen, u_int32_t seq, void *ctxt)
 {  {
         Channel *c = NULL;          Channel *c = NULL;
         int remote_id, sock;          int remote_id, sock;

Legend:
Removed from v.1.149  
changed lines
  Added in v.1.150