Home
last modified time | relevance | path

Searched refs:proxy_command (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMultiword.cpp324 CommandObject *proxy_command = GetProxyCommandObject(); in GetOptions() local
325 if (proxy_command) in GetOptions()
326 return proxy_command->GetOptions(); in GetOptions()
331 CommandObject *proxy_command = GetProxyCommandObject(); in GetHelp() local
332 if (proxy_command) in GetHelp()
333 return proxy_command->GetHelp(); in GetHelp()
338 CommandObject *proxy_command = GetProxyCommandObject(); in GetSyntax() local
339 if (proxy_command) in GetSyntax()
340 return proxy_command->GetSyntax(); in GetSyntax()
345 CommandObject *proxy_command = GetProxyCommandObject(); in GetHelpLong() local
[all …]
/freebsd/crypto/openssh/
H A Dsshconnect.c118 expand_proxy_command(const char *proxy_command, const char *user, in expand_proxy_command() argument
126 xasprintf(&tmp, "exec %s", proxy_command); in expand_proxy_command()
144 const char *host_arg, u_short port, const char *proxy_command) in ssh_proxy_fdpass_connect() argument
158 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_fdpass_connect()
226 u_short port, const char *proxy_command) in ssh_proxy_connect() argument
241 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_connect()
590 if (options.proxy_command == NULL) { in ssh_connect()
593 } else if (strcmp(options.proxy_command, "-") == 0) { in ssh_connect()
606 options.proxy_command); in ssh_connect()
609 options.proxy_command); in ssh_connect()
[all …]
H A Dssh.c454 direct = option_clear_or_none(options.proxy_command) && in resolve_canonicalize()
865 if (options.proxy_command != NULL) in main()
1225 direct = option_clear_or_none(options.proxy_command) && in main()
1297 if (options.proxy_command != NULL && in main()
1298 strcasecmp(options.proxy_command, "none") != 0) in main()
1303 xasprintf(&options.proxy_command, in main()
1324 options.proxy_command); in main()
1336 if (options.proxy_command != NULL && in main()
1337 strcmp(options.proxy_command, "-") == 0 && in main()
1665 if (addrs == NULL && options.proxy_command == NULL) { in main()
H A Dreadconf.h75 char *proxy_command; /* Proxy command for connecting the host. */ member
H A Dreadconf.c1530 charptr = &options->proxy_command; in process_config_line_depth()
2747 options->proxy_command = NULL; in initialize_options()
3079 CLEAR_ON_NONE(options->proxy_command); in fill_default_options()
3151 free(o->proxy_command); in free_options()
3484 active &= o->proxy_command == NULL && o->jump_host == NULL; in parse_jump()
3525 o->proxy_command = xstrdup("none"); in parse_jump()
3934 dump_cfg_string(oProxyCommand, o->proxy_command); in dump_client_config()
H A Dclientloop.c1488 } else if (!option_clear_or_none(options.proxy_command) || in client_loop()