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

Diff for /src/usr.bin/ssh/channels.h between version 1.146 and 1.147

version 1.146, 2023/01/06 02:42:34 version 1.147, 2023/01/06 02:47:18
Line 200 
Line 200 
         void                    *mux_ctx;          void                    *mux_ctx;
         int                     mux_pause;          int                     mux_pause;
         int                     mux_downstream_id;          int                     mux_downstream_id;
   
           /* Inactivity timeouts */
   
           /* Last traffic seen for OPEN channels */
           time_t                  lastused;
           /* Inactivity timeout deadline in seconds (0 = no timeout) */
           u_int                   inactive_deadline;
 };  };
   
 #define CHAN_EXTENDED_IGNORE            0  #define CHAN_EXTENDED_IGNORE            0
Line 295 
Line 302 
 void     channel_cancel_cleanup(struct ssh *, int);  void     channel_cancel_cleanup(struct ssh *, int);
 int      channel_close_fd(struct ssh *, Channel *, int *);  int      channel_close_fd(struct ssh *, Channel *, int *);
 void     channel_send_window_changes(struct ssh *);  void     channel_send_window_changes(struct ssh *);
   
   /* channel inactivity timeouts */
   void channel_add_timeout(struct ssh *, const char *, u_int);
   void channel_clear_timeouts(struct ssh *);
   
 /* mux proxy support */  /* mux proxy support */
   

Legend:
Removed from v.1.146  
changed lines
  Added in v.1.147