Home
last modified time | relevance | path

Searched refs:listen_host (Results 1 – 5 of 5) sorted by relevance

/titanic_50/usr/src/cmd/ssh/libssh/common/
H A Dreadconf.c248 fwd->listen_host = (newfwd->listen_host == NULL) ? in add_local_forward()
249 NULL : xstrdup(newfwd->listen_host); in add_local_forward()
269 fwd->listen_host = (newfwd->listen_host == NULL) ? in add_remote_forward()
270 NULL : xstrdup(newfwd->listen_host); in add_remote_forward()
282 if (options->local_forwards[i].listen_host != NULL) in clear_forwardings()
283 xfree(options->local_forwards[i].listen_host); in clear_forwardings()
288 if (options->remote_forwards[i].listen_host != NULL) in clear_forwardings()
289 xfree(options->remote_forwards[i].listen_host); in clear_forwardings()
1191 fwd->listen_host = NULL; in parse_forward()
1196 fwd->listen_host = xstrdup(cleanhostname(fwdarg[0])); in parse_forward()
[all …]
H A Dchannels.c2315 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()
2338 channel_request_remote_forwarding(const char *listen_host, u_short listen_port, in channel_request_remote_forwarding() argument
2347 if (listen_host != NULL && in channel_request_remote_forwarding()
2348 strlen(listen_host) > SSH_CHANNEL_PATH_LEN - 1) { in channel_request_remote_forwarding()
2356 if (listen_host == NULL) { in channel_request_remote_forwarding()
2361 } else if (*listen_host == '\0' || in channel_request_remote_forwarding()
2362 strcmp(listen_host, "*") == 0) { in channel_request_remote_forwarding()
2368 address_to_bind = listen_host; in channel_request_remote_forwarding()
/titanic_50/usr/src/cmd/ssh/ssh/
H A Dssh.c798 (options.local_forwards[i].listen_host == NULL) ?
800 options.local_forwards[i].listen_host,
805 options.local_forwards[i].listen_host,
818 (options.remote_forwards[i].listen_host == NULL) ?
819 "LOCALHOST" : options.remote_forwards[i].listen_host,
824 options.remote_forwards[i].listen_host,
H A Dclientloop.c709 channel_request_rforward_cancel(fwd.listen_host, fwd.listen_port); in process_cmdline()
716 if (channel_setup_local_fwd_listener(fwd.listen_host, in process_cmdline()
723 if (channel_request_remote_forwarding(fwd.listen_host, in process_cmdline()
739 if (fwd.listen_host != NULL) in process_cmdline()
740 xfree(fwd.listen_host); in process_cmdline()
/titanic_50/usr/src/cmd/ssh/include/
H A Dreadconf.h39 char *listen_host; /* Host (address) to listen on. */ member