Searched refs:listen_path (Results 1 – 7 of 7) sorted by relevance
/external/openssh/ |
D | channels.c | 122 char *listen_path; /* Remote side should listen path. */ member 2975 path = fwd->listen_path; 2983 if (fwd->listen_path == NULL) { 2987 if (strlen(fwd->listen_path) > sizeof(sunaddr.sun_path)) { 2988 error("Local listening path too long: %s", fwd->listen_path); 2992 debug3("%s: type %d path %s", __func__, type, fwd->listen_path); 2996 sock = unix_listener(fwd->listen_path, SSH_LISTEN_BACKLOG, 3002 debug("Local forwarding listening on path %s.", fwd->listen_path); 3011 c->listening_addr = xstrdup(fwd->listen_path); 3060 if (fwd->listen_path != NULL) [all …]
|
D | mux.c | 524 (fwd->listen_path != NULL) ? fwd->listen_path : in format_forward() 539 (fwd->listen_path != NULL) ? fwd->listen_path : in format_forward() 567 if (!compare_host(a->listen_path, b->listen_path)) in compare_forward() 624 if (rfwd->listen_path != NULL) in mux_confirm_remote_forward() 626 "listen path %s", rfwd->listen_path); in mux_confirm_remote_forward() 679 fwd.listen_path = listen_addr; in process_mux_open_fwd() 702 if (ftype == MUX_FWD_DYNAMIC && fwd.listen_path) { in process_mux_open_fwd() 804 free(fwd.listen_path); in process_mux_open_fwd() 846 fwd.listen_path = listen_addr; in process_mux_close_fwd() 905 free(found_fwd->listen_path); in process_mux_close_fwd() [all …]
|
D | readconf.c | 295 newfwd->listen_path == NULL) in add_local_forward() 305 fwd->listen_path = newfwd->listen_path; in add_local_forward() 328 fwd->listen_path = newfwd->listen_path; in add_remote_forward() 343 free(options->local_forwards[i].listen_path); in clear_forwardings() 354 free(options->remote_forwards[i].listen_path); in clear_forwardings() 1986 fwd->listen_path = xstrdup(fwdargs[0].arg); in parse_forward() 1997 fwd->listen_path = xstrdup(fwdargs[0].arg); in parse_forward() 2015 fwd->listen_path = xstrdup(fwdargs[0].arg); in parse_forward() 2050 fwd->listen_path == NULL) in parse_forward() 2057 if ((fwd->listen_port < 0 && fwd->listen_path == NULL) || in parse_forward() [all …]
|
D | ssh.c | 1436 rfwd->listen_path ? rfwd->listen_path : in ssh_confirm_remote_forward() 1438 (rfwd->listen_path || rfwd->listen_host) ? ":" : "", in ssh_confirm_remote_forward() 1441 if (rfwd->listen_path == NULL && rfwd->listen_port == 0) { in ssh_confirm_remote_forward() 1456 if (rfwd->listen_path != NULL) in ssh_confirm_remote_forward() 1458 "for listen path %s", rfwd->listen_path); in ssh_confirm_remote_forward() 1463 if (rfwd->listen_path != NULL) in ssh_confirm_remote_forward() 1465 "for listen path %s", rfwd->listen_path); in ssh_confirm_remote_forward() 1525 (options.local_forwards[i].listen_path != NULL) ? in ssh_init_forwarding() 1526 options.local_forwards[i].listen_path : in ssh_init_forwarding() 1547 (options.remote_forwards[i].listen_path != NULL) ? in ssh_init_forwarding() [all …]
|
D | serverloop.c | 1285 fwd.listen_path = packet_get_string(NULL); in server_input_global_request() 1287 fwd.listen_path); in server_input_global_request() 1299 free(fwd.listen_path); in server_input_global_request() 1304 fwd.listen_path = packet_get_string(NULL); in server_input_global_request() 1306 fwd.listen_path); in server_input_global_request() 1309 free(fwd.listen_path); in server_input_global_request()
|
D | misc.h | 22 char *listen_path; /* Path to bind domain socket. */ member
|
D | clientloop.c | 989 free(fwd.listen_path); in process_cmdline() 1861 char *listen_path; in client_request_forwarded_streamlocal() local 1864 listen_path = packet_get_string(NULL); in client_request_forwarded_streamlocal() 1870 debug("%s: %s", __func__, listen_path); in client_request_forwarded_streamlocal() 1872 c = channel_connect_by_listen_path(listen_path, in client_request_forwarded_streamlocal() 1874 free(listen_path); in client_request_forwarded_streamlocal()
|