search for: client_forwarded_tcpip_request

Displaying 3 results from an estimated 3 matches for "client_forwarded_tcpip_request".

2000 Aug 15
0
Experimental -R support patch for openssh client
..._permitted_opens++; } } +/* Jarno Huuskonen: + * ssh2 + * This called after client has received SSH2_MSG_GLOBAL_REQUEST/ + * "forwarded-tcpip". + * 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;...
2000 Aug 23
1
Protocol 2 remote forwarding patch
...tted_opens[num_permitted_opens].listen_port = listen_port; + num_permitted_opens++; } } +/* Jarno Huuskonen: + * This gets called after ssh client has received + * SSH2_MSG_GLOBAL_REQUEST type "forwarded-tcpip". + * + * 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 *listen_address; /* Remote (server) address that is listening + for the connection */ + int listen_port; + char* originator_address; /* Address of the...
2001 Feb 10
3
Protocol 2 remote forwarding patch
...tted_opens[num_permitted_opens].listen_port = listen_port; + num_permitted_opens++; + } +} + +/* Jarno Huuskonen: + * This gets called after ssh client has received + * SSH2_MSG_GLOBAL_REQUEST type "forwarded-tcpip". + * + * 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 *listen_address; /* Remote (server) address that is listening + for the connection */ + int listen_port; + char* originator_address; /* Address of the client connect...