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

Diff for /src/usr.bin/ssh/ssh.h between version 1.26 and 1.27

version 1.26, 1999/11/24 19:53:52 version 1.27, 1999/12/01 13:59:15
Line 275 
Line 275 
  */   */
 int  int
 ssh_connect(const char *host, struct sockaddr_in * hostaddr,  ssh_connect(const char *host, struct sockaddr_in * hostaddr,
     int port, int connection_attempts,      u_short port, int connection_attempts,
     int anonymous, uid_t original_real_uid,      int anonymous, uid_t original_real_uid,
     const char *proxy_command);      const char *proxy_command);
   
Line 560 
Line 560 
  * error.   * error.
  */   */
 void  void
 channel_request_local_forwarding(int port, const char *host,  channel_request_local_forwarding(u_short port, const char *host,
     int remote_port);      u_short remote_port);
   
 /*  /*
  * Initiate forwarding of connections to port "port" on remote host through   * Initiate forwarding of connections to port "port" on remote host through
Line 570 
Line 570 
  * permitted.   * permitted.
  */   */
 void  void
 channel_request_remote_forwarding(int port, const char *host,  channel_request_remote_forwarding(u_short port, const char *host,
     int remote_port);      u_short remote_port);
   
 /*  /*
  * Permits opening to any host/port in SSH_MSG_PORT_OPEN.  This is usually   * Permits opening to any host/port in SSH_MSG_PORT_OPEN.  This is usually

Legend:
Removed from v.1.26  
changed lines
  Added in v.1.27