[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.22.2.3 and 1.22.2.4

version 1.22.2.3, 2001/03/21 19:46:23 version 1.22.2.4, 2001/05/07 21:09:27
Line 53 
Line 53 
 #define SSH_CHANNEL_LARVAL              10      /* larval session */  #define SSH_CHANNEL_LARVAL              10      /* larval session */
 #define SSH_CHANNEL_RPORT_LISTENER      11      /* Listening to a R-style port  */  #define SSH_CHANNEL_RPORT_LISTENER      11      /* Listening to a R-style port  */
 #define SSH_CHANNEL_CONNECTING          12  #define SSH_CHANNEL_CONNECTING          12
 #define SSH_CHANNEL_MAX_TYPE            13  #define SSH_CHANNEL_DYNAMIC             13
   #define SSH_CHANNEL_MAX_TYPE            14
   
 /*  /*
  * Data structure for channel data.  This is iniailized in channel_allocate   * Data structure for channel data.  This is iniailized in channel_allocate
Line 171 
Line 172 
  * select bitmasks.   * select bitmasks.
  */   */
 void  void
 channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp);  channel_prepare_select(fd_set **readsetp, fd_set **writesetp, int *maxfdp,
       int rekeying);
   
 /*  /*
  * After select, perform any appropriate operations for channels which have   * After select, perform any appropriate operations for channels which have
Line 304 
Line 306 
 int     channel_connect_to(const char *host, u_short host_port);  int     channel_connect_to(const char *host, u_short host_port);
 int     channel_connect_by_listen_adress(u_short listen_port);  int     channel_connect_by_listen_adress(u_short listen_port);
 int     x11_connect_display(void);  int     x11_connect_display(void);
   
   int     channel_find_open(void);
   
 #endif  #endif

Legend:
Removed from v.1.22.2.3  
changed lines
  Added in v.1.22.2.4