[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.2.1 and 1.11.2.2

version 1.11.2.1, 2005/03/10 16:28:27 version 1.11.2.2, 2005/09/02 03:45:00
Line 37 
Line 37 
   
 /* Client side main loop for the interactive session. */  /* Client side main loop for the interactive session. */
 int      client_loop(int, int, int);  int      client_loop(int, int, int);
   void     client_x11_get_proto(const char *, const char *, u_int,
               char **, char **);
 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 protocol version */
   #define SSHMUX_VER                      1
   
 /* Multiplexing control protocol flags */  /* Multiplexing control protocol flags */
 #define SSHMUX_COMMAND_OPEN             1       /* Open new connection */  #define SSHMUX_COMMAND_OPEN             1       /* Open new connection */
 #define SSHMUX_COMMAND_ALIVE_CHECK      2       /* Check master is alive */  #define SSHMUX_COMMAND_ALIVE_CHECK      2       /* Check master is alive */
Line 48 
Line 53 
   
 #define SSHMUX_FLAG_TTY                 (1)     /* Request tty on open */  #define SSHMUX_FLAG_TTY                 (1)     /* Request tty on open */
 #define SSHMUX_FLAG_SUBSYS              (1<<1)  /* Subsystem request on open */  #define SSHMUX_FLAG_SUBSYS              (1<<1)  /* Subsystem request on open */
   #define SSHMUX_FLAG_X11_FWD             (1<<2)  /* Request X11 forwarding */
   #define SSHMUX_FLAG_AGENT_FWD           (1<<3)  /* Request agent forwarding */

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