Searched refs:listen_path (Results 1 – 8 of 8) sorted by relevance
/external/openssh/ |
D | channels.c | 122 char *listen_path; /* Remote side should listen path. */ member 476 permitted_opens[i].listen_path = NULL; in channel_free() 3364 path = fwd->listen_path; 3372 if (fwd->listen_path == NULL) { 3376 if (strlen(fwd->listen_path) > sizeof(sunaddr.sun_path)) { 3377 error("Local listening path too long: %s", fwd->listen_path); 3381 debug3("%s: type %d path %s", __func__, type, fwd->listen_path); 3385 sock = unix_listener(fwd->listen_path, SSH_LISTEN_BACKLOG, 3391 debug("Local forwarding listening on path %s.", fwd->listen_path); 3400 c->listening_addr = xstrdup(fwd->listen_path); [all …]
|
D | serverloop.c | 765 fwd.listen_path = packet_get_string(NULL); in server_input_global_request() 767 fwd.listen_path); in server_input_global_request() 781 free(fwd.listen_path); in server_input_global_request() 786 fwd.listen_path = packet_get_string(NULL); in server_input_global_request() 788 fwd.listen_path); in server_input_global_request() 791 free(fwd.listen_path); in server_input_global_request()
|
D | mux.c | 527 (fwd->listen_path != NULL) ? fwd->listen_path : in format_forward() 542 (fwd->listen_path != NULL) ? fwd->listen_path : in format_forward() 570 if (!compare_host(a->listen_path, b->listen_path)) in compare_forward() 629 if (rfwd->listen_path != NULL) in mux_confirm_remote_forward() 631 "listen path %s", rfwd->listen_path); in mux_confirm_remote_forward() 642 free(rfwd->listen_path); in mux_confirm_remote_forward() 697 fwd.listen_path = listen_addr; in process_mux_open_fwd() 720 if (ftype == MUX_FWD_DYNAMIC && fwd.listen_path) { in process_mux_open_fwd() 822 free(fwd.listen_path); in process_mux_open_fwd() 866 fwd.listen_path = listen_addr; in process_mux_close_fwd() [all …]
|
D | readconf.c | 328 newfwd->listen_path == NULL) in add_local_forward() 342 fwd->listen_path = newfwd->listen_path; in add_local_forward() 371 fwd->listen_path = newfwd->listen_path; in add_remote_forward() 386 free(options->local_forwards[i].listen_path); in clear_forwardings() 397 free(options->remote_forwards[i].listen_path); in clear_forwardings() 2203 fwd->listen_path = xstrdup(fwdargs[0].arg); in parse_forward() 2214 fwd->listen_path = xstrdup(fwdargs[0].arg); in parse_forward() 2232 fwd->listen_path = xstrdup(fwdargs[0].arg); in parse_forward() 2267 fwd->listen_path == NULL) in parse_forward() 2274 if ((fwd->listen_port < 0 && fwd->listen_path == NULL) || in parse_forward() [all …]
|
D | ssh.c | 1535 rfwd->listen_path ? rfwd->listen_path : in ssh_confirm_remote_forward() 1537 (rfwd->listen_path || rfwd->listen_host) ? ":" : "", in ssh_confirm_remote_forward() 1540 if (rfwd->listen_path == NULL && rfwd->listen_port == 0) { in ssh_confirm_remote_forward() 1555 if (rfwd->listen_path != NULL) in ssh_confirm_remote_forward() 1557 "for listen path %s", rfwd->listen_path); in ssh_confirm_remote_forward() 1562 if (rfwd->listen_path != NULL) in ssh_confirm_remote_forward() 1564 "for listen path %s", rfwd->listen_path); in ssh_confirm_remote_forward() 1625 (options.local_forwards[i].listen_path != NULL) ? in ssh_init_forwarding() 1626 options.local_forwards[i].listen_path : in ssh_init_forwarding() 1647 (options.remote_forwards[i].listen_path != NULL) ? in ssh_init_forwarding() [all …]
|
D | misc.h | 24 char *listen_path; /* Path to bind domain socket. */ member
|
D | clientloop.c | 1023 free(fwd.listen_path); in process_cmdline() 1942 char *listen_path; in client_request_forwarded_streamlocal() local 1945 listen_path = packet_get_string(NULL); in client_request_forwarded_streamlocal() 1951 debug("%s: %s", __func__, listen_path); in client_request_forwarded_streamlocal() 1953 c = channel_connect_by_listen_path(listen_path, in client_request_forwarded_streamlocal() 1955 free(listen_path); in client_request_forwarded_streamlocal()
|
D | misc.c | 1239 if (strcmp_maybe_null(a->listen_path, b->listen_path) == 0) in forward_equals()
|