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

Diff for /src/usr.bin/ssh/mux.c between version 1.15 and 1.16

version 1.15, 2010/04/10 05:48:16 version 1.16, 2010/04/23 22:27:38
Line 437 
Line 437 
   
         channel_send_open(nc->self);          channel_send_open(nc->self);
         channel_register_open_confirm(nc->self, mux_session_confirm, cctx);          channel_register_open_confirm(nc->self, mux_session_confirm, cctx);
         channel_register_cleanup(nc->self, mux_master_session_cleanup_cb, 0);          channel_register_cleanup(nc->self, mux_master_session_cleanup_cb, 1);
   
         /* prepare reply */          /* prepare reply */
         /* XXX defer until mux_session_confirm() fires */          /* XXX defer until mux_session_confirm() fires */
Line 809 
Line 809 
         debug2("%s: channel_new: %d linked to control channel %d",          debug2("%s: channel_new: %d linked to control channel %d",
             __func__, nc->self, nc->ctl_chan);              __func__, nc->self, nc->ctl_chan);
   
         channel_register_cleanup(nc->self, mux_master_session_cleanup_cb, 0);          channel_register_cleanup(nc->self, mux_master_session_cleanup_cb, 1);
   
         /* prepare reply */          /* prepare reply */
         /* XXX defer until channel confirmed */          /* XXX defer until channel confirmed */

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.16