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.c75 expand_proxy_command(const char *proxy_command, const char *user, in expand_proxy_command() argument
83 xasprintf(&tmp, "exec %s", proxy_command); in expand_proxy_command()
101 const char *host_arg, u_short port, const char *proxy_command) in ssh_proxy_fdpass_connect() argument
115 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_fdpass_connect()
183 u_short port, const char *proxy_command) in ssh_proxy_connect() argument
198 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_connect()
547 if (options.proxy_command == NULL) { in ssh_connect()
550 } else if (strcmp(options.proxy_command, "-") == 0) { in ssh_connect()
563 options.proxy_command); in ssh_connect()
566 options.proxy_command); in ssh_connect()
[all …]
H A Dssh.c453 direct = option_clear_or_none(options.proxy_command) && in resolve_canonicalize()
884 if (options.proxy_command != NULL) in main()
1244 direct = option_clear_or_none(options.proxy_command) && in main()
1316 if (options.proxy_command != NULL && in main()
1317 strcasecmp(options.proxy_command, "none") != 0) in main()
1322 xasprintf(&options.proxy_command, in main()
1343 options.proxy_command); in main()
1355 if (options.proxy_command != NULL && in main()
1356 strcmp(options.proxy_command, "-") == 0 && in main()
1683 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.c1486 } else if (!option_clear_or_none(options.proxy_command) || in client_loop()