[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.67.2.1 and 1.68

version 1.67.2.1, 2002/06/26 15:30:37 version 1.68, 2002/06/10 22:28:41
Line 90 
Line 90 
         int     host_port;      /* remote port to connect for forwards */          int     host_port;      /* remote port to connect for forwards */
         char   *remote_name;    /* remote hostname */          char   *remote_name;    /* remote hostname */
   
         u_int   remote_window;          int     remote_window;
         u_int   remote_maxpacket;          int     remote_maxpacket;
         u_int   local_window;          int     local_window;
         u_int   local_window_max;          int     local_window_max;
         u_int   local_consumed;          int     local_consumed;
         u_int   local_maxpacket;          int     local_maxpacket;
         int     extended_usage;          int     extended_usage;
         int     single_connection;          int     single_connection;
   
Line 151 
Line 151 
 /* channel management */  /* channel management */
   
 Channel *channel_lookup(int);  Channel *channel_lookup(int);
 Channel *channel_new(char *, int, int, int, int, u_int, u_int, int, char *, int);  Channel *channel_new(char *, int, int, int, int, int, int, int, char *, int);
 void     channel_set_fds(int, int, int, int, int, int, u_int);  void     channel_set_fds(int, int, int, int, int, int, u_int);
 void     channel_free(Channel *);  void     channel_free(Channel *);
 void     channel_free_all(void);  void     channel_free_all(void);
Line 205 
Line 205 
 /* x11 forwarding */  /* x11 forwarding */
   
 int      x11_connect_display(void);  int      x11_connect_display(void);
 int      x11_create_display_inet(int, int, int, u_int *);  int      x11_create_display_inet(int, int, int);
 void     x11_input_open(int, u_int32_t, void *);  void     x11_input_open(int, u_int32_t, void *);
 void     x11_request_forwarding_with_spoofing(int, const char *, const char *);  void     x11_request_forwarding_with_spoofing(int, const char *, const char *);
 void     deny_input_open(int, u_int32_t, void *);  void     deny_input_open(int, u_int32_t, void *);

Legend:
Removed from v.1.67.2.1  
changed lines
  Added in v.1.68