search for: connected_address

Displaying 1 result from an estimated 1 matches for "connected_address".

2000 Aug 15
0
Experimental -R support patch for openssh client
...t;. + * Checks if creating the channel is ok. And connects to required host. + * returns new channel if OK or NULL for failure. + */ +Channel* +client_forwarded_tcpip_request(const char *request_type, int rchan, + int rwindow, int rmaxpack) +{ + Channel* c = NULL; + int sock; + char *connected_address; /* Remote address that is listening for the + connection */ + int connected_port; /* Remote port connected */ + + char* client_address; /* Client that connected to connected_address */ + int client_port; /* Client port */ + + unsigned int client_len, connected_len; +...