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

Diff for /src/usr.bin/ssh/clientloop.c between version 1.102 and 1.103

version 1.102, 2002/06/24 14:33:27 version 1.103, 2002/06/30 21:59:45
Line 1114 
Line 1114 
 static Channel *  static Channel *
 client_request_forwarded_tcpip(const char *request_type, int rchan)  client_request_forwarded_tcpip(const char *request_type, int rchan)
 {  {
         Channel* c = NULL;          Channel *c = NULL;
         char *listen_address, *originator_address;          char *listen_address, *originator_address;
         int listen_port, originator_port;          int listen_port, originator_port;
         int sock;          int sock;
Line 1144 
Line 1144 
         return c;          return c;
 }  }
   
 static Channel*  static Channel *
 client_request_x11(const char *request_type, int rchan)  client_request_x11(const char *request_type, int rchan)
 {  {
         Channel *c = NULL;          Channel *c = NULL;
Line 1180 
Line 1180 
         return c;          return c;
 }  }
   
 static Channel*  static Channel *
 client_request_agent(const char *request_type, int rchan)  client_request_agent(const char *request_type, int rchan)
 {  {
         Channel *c = NULL;          Channel *c = NULL;

Legend:
Removed from v.1.102  
changed lines
  Added in v.1.103