Home
last modified time | relevance | path

Searched refs:listen_path (Results 1 – 8 of 8) sorted by relevance

/dragonfly/crypto/openssh/
H A Dssh.c1469 cp = options.local_forwards[i].listen_path; in main()
1470 p = options.local_forwards[i].listen_path = in main()
1490 cp = options.remote_forwards[i].listen_path; in main()
1491 p = options.remote_forwards[i].listen_path = in main()
1792 rfwd->listen_path ? rfwd->listen_path : in ssh_confirm_remote_forward()
1826 if (rfwd->listen_path != NULL) in ssh_confirm_remote_forward()
1828 "for listen path %s", rfwd->listen_path); in ssh_confirm_remote_forward()
1833 if (rfwd->listen_path != NULL) in ssh_confirm_remote_forward()
1835 "for listen path %s", rfwd->listen_path); in ssh_confirm_remote_forward()
1947 options.local_forwards[i].listen_path : in ssh_init_forwarding()
[all …]
H A Dmux.c537 (fwd->listen_path != NULL) ? fwd->listen_path : in format_forward()
552 (fwd->listen_path != NULL) ? fwd->listen_path : in format_forward()
580 if (!compare_host(a->listen_path, b->listen_path)) in compare_forward()
651 if (rfwd->listen_path != NULL) in mux_confirm_remote_forward()
664 free(rfwd->listen_path); in mux_confirm_remote_forward()
719 fwd.listen_path = listen_addr; in mux_master_process_open_fwd()
840 free(fwd.listen_path); in mux_master_process_open_fwd()
885 fwd.listen_path = listen_addr; in mux_master_process_close_fwd()
944 free(found_fwd->listen_path); in mux_master_process_close_fwd()
1757 if (fwd->listen_path != NULL) in mux_client_forward()
[all …]
H A Dchannels.c486 free(perm->listen_path); in fwd_perm_clear()
568 (*permp)[n].listen_path = MAYBE_DUP(listen_path); in permission_set_add()
3775 path = fwd->listen_path; in channel_setup_fwd_listener_streamlocal()
3783 if (fwd->listen_path == NULL) { in channel_setup_fwd_listener_streamlocal()
3863 fwd->listen_path); in channel_cancel_rport_listener()
3939 fwd->listen_path); in channel_cancel_lport_listener()
3968 if (fwd->listen_path != NULL) in remote_open_match()
4030 if (fwd->listen_path != NULL) in channel_setup_remote_fwd_listener()
4036 fwd->listen_path); in channel_setup_remote_fwd_listener()
4122 listen_path = xstrdup(fwd->listen_path); in channel_request_remote_forwarding()
[all …]
H A Dreadconf.c386 fwd->listen_path = newfwd->listen_path; in add_local_forward()
415 fwd->listen_path = newfwd->listen_path; in add_remote_forward()
430 free(options->local_forwards[i].listen_path); in clear_forwardings()
441 free(options->remote_forwards[i].listen_path); in clear_forwardings()
2757 free(o->local_forwards[i].listen_path); in free_options()
2764 free(o->remote_forwards[i].listen_path); in free_options()
2971 fwd->listen_path == NULL) in parse_forward()
2994 if (fwd->listen_path != NULL && in parse_forward()
3007 free(fwd->listen_path); in parse_forward()
3008 fwd->listen_path = NULL; in parse_forward()
[all …]
H A Dserverloop.c825 if ((r = sshpkt_get_cstring(ssh, &fwd.listen_path, NULL)) != 0) in server_input_global_request()
828 fwd.listen_path); in server_input_global_request()
844 if ((r = sshpkt_get_cstring(ssh, &fwd.listen_path, NULL)) != 0) in server_input_global_request()
847 fwd.listen_path); in server_input_global_request()
866 free(fwd.listen_path); in server_input_global_request()
H A Dmisc.h27 char *listen_path; /* Path to bind domain socket. */ member
H A Dclientloop.c873 free(fwd.listen_path); in process_cmdline()
1525 char *listen_path; in client_request_forwarded_streamlocal() local
1529 if ((r = sshpkt_get_cstring(ssh, &listen_path, NULL)) != 0 || in client_request_forwarded_streamlocal()
1534 debug_f("request: %s", listen_path); in client_request_forwarded_streamlocal()
1536 c = channel_connect_by_listen_path(ssh, listen_path, in client_request_forwarded_streamlocal()
1538 free(listen_path); in client_request_forwarded_streamlocal()
H A Dmisc.c1952 if (strcmp_maybe_null(a->listen_path, b->listen_path) == 0) in forward_equals()