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

Diff for /src/usr.bin/ssh/clientloop.h between version 1.11 and 1.11.2.1

version 1.11, 2004/07/11 17:48:47 version 1.11.2.1, 2005/03/10 16:28:27
Line 40 
Line 40 
 void     client_global_request_reply_fwd(int, u_int32_t, void *);  void     client_global_request_reply_fwd(int, u_int32_t, void *);
 void     client_session2_setup(int, int, int, const char *, struct termios *,  void     client_session2_setup(int, int, int, const char *, struct termios *,
             int, Buffer *, char **, dispatch_fn *);              int, Buffer *, char **, dispatch_fn *);
   
   /* Multiplexing control protocol flags */
   #define SSHMUX_COMMAND_OPEN             1       /* Open new connection */
   #define SSHMUX_COMMAND_ALIVE_CHECK      2       /* Check master is alive */
   #define SSHMUX_COMMAND_TERMINATE        3       /* Ask master to exit */
   
   #define SSHMUX_FLAG_TTY                 (1)     /* Request tty on open */
   #define SSHMUX_FLAG_SUBSYS              (1<<1)  /* Subsystem request on open */

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.11.2.1