[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.149 and 1.150

version 1.149, 2023/03/04 03:22:59 version 1.150, 2023/06/05 13:24:36
Line 207 
Line 207 
         /* Last traffic seen for OPEN channels */          /* Last traffic seen for OPEN channels */
         time_t                  lastused;          time_t                  lastused;
         /* Inactivity timeout deadline in seconds (0 = no timeout) */          /* Inactivity timeout deadline in seconds (0 = no timeout) */
         u_int                   inactive_deadline;          int                     inactive_deadline;
 };  };
   
 #define CHAN_EXTENDED_IGNORE            0  #define CHAN_EXTENDED_IGNORE            0
Line 305 
Line 305 
 void     channel_send_window_changes(struct ssh *);  void     channel_send_window_changes(struct ssh *);
   
 /* channel inactivity timeouts */  /* channel inactivity timeouts */
 void channel_add_timeout(struct ssh *, const char *, u_int);  void channel_add_timeout(struct ssh *, const char *, int);
 void channel_clear_timeouts(struct ssh *);  void channel_clear_timeouts(struct ssh *);
   
 /* mux proxy support */  /* mux proxy support */

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