Displaying 1 result from an estimated 1 matches for "connected_port".
Did you mean:
connect_port
2000 Aug 15
0
Experimental -R support patch for openssh client
...l 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;
+
+ int newch;
+ int i;
+
+ debug("ssh2 server tries to open forwarded-tcpip channel.");...