Home
last modified time | relevance | path

Searched refs:listen_port (Results 1 – 7 of 7) sorted by relevance

/titanic_44/usr/src/cmd/ssh/libssh/common/
H A Dreadconf.c241 if (newfwd->listen_port < IPPORT_RESERVED && original_real_uid != 0) in add_local_forward()
250 fwd->listen_port = newfwd->listen_port; in add_local_forward()
271 fwd->listen_port = newfwd->listen_port; in add_remote_forward()
1192 fwd->listen_port = a2port(fwdarg[0]); in parse_forward()
1197 fwd->listen_port = a2port(fwdarg[1]); in parse_forward()
1202 fwd->listen_port = a2port(fwdarg[0]); in parse_forward()
1209 fwd->listen_port = a2port(fwdarg[1]); in parse_forward()
1215 if (fwd->listen_port == 0 || (fwd->connect_port == 0 && i > 2)) in parse_forward()
H A Dchannels.c95 u_short listen_port; /* Remote side should listen port number. */ member
2158 channel_setup_fwd_listener(int type, const char *listen_addr, u_short listen_port, in channel_setup_fwd_listener() argument
2221 snprintf(strport, sizeof strport, "%d", listen_port); in channel_setup_fwd_listener()
2282 c->listening_port = listen_port; in channel_setup_fwd_listener()
2287 listen_port); in channel_setup_fwd_listener()
2315 channel_setup_local_fwd_listener(const char *listen_host, u_short listen_port, in channel_setup_local_fwd_listener() argument
2319 listen_host, listen_port, host_to_connect, port_to_connect, in channel_setup_local_fwd_listener()
2326 u_short listen_port, int gateway_ports) in channel_setup_remote_fwd_listener() argument
2329 listen_address, listen_port, NULL, 0, gateway_ports); in channel_setup_remote_fwd_listener()
2338 channel_request_remote_forwarding(const char *listen_host, u_short listen_port, in channel_request_remote_forwarding() argument
[all …]
/titanic_44/usr/src/cmd/ssh/ssh/
H A Dssh.c801 options.local_forwards[i].listen_port,
806 options.local_forwards[i].listen_port,
820 options.remote_forwards[i].listen_port,
825 options.remote_forwards[i].listen_port,
1008 options.remote_forwards[i].listen_port,
1013 options.remote_forwards[i].listen_port);
H A Dclientloop.c709 channel_request_rforward_cancel(fwd.listen_host, fwd.listen_port); in process_cmdline()
717 fwd.listen_port, fwd.connect_host, in process_cmdline()
724 fwd.listen_port, fwd.connect_host, in process_cmdline()
1368 int listen_port, originator_port; in client_request_forwarded_tcpip() local
1373 listen_port = packet_get_int(); in client_request_forwarded_tcpip()
1379 listen_address, listen_port, originator_address, originator_port); in client_request_forwarded_tcpip()
1381 sock = channel_connect_by_listen_address(listen_port); in client_request_forwarded_tcpip()
/titanic_44/usr/src/cmd/ssh/sshd/
H A Dserverloop.c1168 u_short listen_port; in server_input_global_request() local
1174 listen_port = (u_short)packet_get_int(); in server_input_global_request()
1176 listen_address, listen_port); in server_input_global_request()
1182 || (listen_port < IPPORT_RESERVED && pw->pw_uid != 0) in server_input_global_request()
1190 listen_address, listen_port, options.gateway_ports); in server_input_global_request()
/titanic_44/usr/src/cmd/ssh/include/
H A Dreadconf.h40 u_short listen_port; /* Port to forward. */ member
/titanic_44/usr/src/cmd/ssh/doc/
H A DChangeLog1369 - fix pr 1196, listen_port and port_to_connect interchanged