[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.20 and 1.21

version 1.20, 2000/09/21 11:25:33 version 1.21, 2000/10/27 07:32:18
Line 117 
Line 117 
 #define CHAN_X11_PACKET_DEFAULT (CHAN_X11_WINDOW_DEFAULT/2)  #define CHAN_X11_PACKET_DEFAULT (CHAN_X11_WINDOW_DEFAULT/2)
   
   
 void    channel_set_fds(int id, int rfd, int wfd, int efd, int extusage);  
 void    channel_open(int id);  void    channel_open(int id);
 void    channel_request(int id, char *service, int wantconfirm);  void    channel_request(int id, char *service, int wantconfirm);
 void    channel_request_start(int id, char *service, int wantconfirm);  void    channel_request_start(int id, char *service, int wantconfirm);
Line 129 
Line 128 
   
 int  int
 channel_new(char *ctype, int type, int rfd, int wfd, int efd,  channel_new(char *ctype, int type, int rfd, int wfd, int efd,
     int window, int maxpack, int extended_usage, char *remote_name);      int window, int maxpack, int extended_usage, char *remote_name,
       int nonblock);
   void
   channel_set_fds(int id, int rfd, int wfd, int efd,
       int extusage, int nonblock);
   
 void    channel_input_channel_request(int type, int plen, void *ctxt);  void    channel_input_channel_request(int type, int plen, void *ctxt);
 void    channel_input_close(int type, int plen, void *ctxt);  void    channel_input_close(int type, int plen, void *ctxt);

Legend:
Removed from v.1.20  
changed lines
  Added in v.1.21