[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.94 and 1.95

version 1.94, 2022/06/03 04:30:47 version 1.95, 2023/01/06 02:39:59
Line 175 
Line 175 
 /* Cleanup callback fired on closure of mux client _session_ channel */  /* Cleanup callback fired on closure of mux client _session_ channel */
 /* ARGSUSED */  /* ARGSUSED */
 static void  static void
 mux_master_session_cleanup_cb(struct ssh *ssh, int cid, void *unused)  mux_master_session_cleanup_cb(struct ssh *ssh, int cid, int force, void *unused)
 {  {
         Channel *cc, *c = channel_by_id(ssh, cid);          Channel *cc, *c = channel_by_id(ssh, cid);
   
Line 197 
Line 197 
 /* Cleanup callback fired on closure of mux client _control_ channel */  /* Cleanup callback fired on closure of mux client _control_ channel */
 /* ARGSUSED */  /* ARGSUSED */
 static void  static void
 mux_master_control_cleanup_cb(struct ssh *ssh, int cid, void *unused)  mux_master_control_cleanup_cb(struct ssh *ssh, int cid, int force, void *unused)
 {  {
         Channel *sc, *c = channel_by_id(ssh, cid);          Channel *sc, *c = channel_by_id(ssh, cid);
   

Legend:
Removed from v.1.94  
changed lines
  Added in v.1.95