[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.248 and 1.249

version 1.248, 2006/03/28 01:52:28 version 1.249, 2006/03/30 09:41:25
Line 1939 
Line 1939 
   
   
 /* -- protocol input */  /* -- protocol input */
   
   /* ARGSUSED */
 void  void
 channel_input_data(int type, u_int32_t seq, void *ctxt)  channel_input_data(int type, u_int32_t seq, void *ctxt)
 {  {
Line 1998 
Line 2000 
         xfree(data);          xfree(data);
 }  }
   
   /* ARGSUSED */
 void  void
 channel_input_extended_data(int type, u_int32_t seq, void *ctxt)  channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
 {  {
Line 2044 
Line 2047 
         xfree(data);          xfree(data);
 }  }
   
   /* ARGSUSED */
 void  void
 channel_input_ieof(int type, u_int32_t seq, void *ctxt)  channel_input_ieof(int type, u_int32_t seq, void *ctxt)
 {  {
Line 2067 
Line 2071 
   
 }  }
   
   /* ARGSUSED */
 void  void
 channel_input_close(int type, u_int32_t seq, void *ctxt)  channel_input_close(int type, u_int32_t seq, void *ctxt)
 {  {
Line 2105 
Line 2110 
 }  }
   
 /* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */  /* proto version 1.5 overloads CLOSE_CONFIRMATION with OCLOSE */
   /* ARGSUSED */
 void  void
 channel_input_oclose(int type, u_int32_t seq, void *ctxt)  channel_input_oclose(int type, u_int32_t seq, void *ctxt)
 {  {
Line 2117 
Line 2123 
         chan_rcvd_oclose(c);          chan_rcvd_oclose(c);
 }  }
   
   /* ARGSUSED */
 void  void
 channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)  channel_input_close_confirmation(int type, u_int32_t seq, void *ctxt)
 {  {
Line 2133 
Line 2140 
         channel_free(c);          channel_free(c);
 }  }
   
   /* ARGSUSED */
 void  void
 channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)  channel_input_open_confirmation(int type, u_int32_t seq, void *ctxt)
 {  {
Line 2180 
Line 2188 
         return "unknown reason";          return "unknown reason";
 }  }
   
   /* ARGSUSED */
 void  void
 channel_input_open_failure(int type, u_int32_t seq, void *ctxt)  channel_input_open_failure(int type, u_int32_t seq, void *ctxt)
 {  {
Line 2211 
Line 2220 
         channel_free(c);          channel_free(c);
 }  }
   
   /* ARGSUSED */
 void  void
 channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)  channel_input_window_adjust(int type, u_int32_t seq, void *ctxt)
 {  {
Line 2235 
Line 2245 
         c->remote_window += adjust;          c->remote_window += adjust;
 }  }
   
   /* ARGSUSED */
 void  void
 channel_input_port_open(int type, u_int32_t seq, void *ctxt)  channel_input_port_open(int type, u_int32_t seq, void *ctxt)
 {  {

Legend:
Removed from v.1.248  
changed lines
  Added in v.1.249