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.c81 expand_proxy_command(const char *proxy_command, const char *user, in expand_proxy_command() argument
89 xasprintf(&tmp, "exec %s", proxy_command); in expand_proxy_command()
107 const char *host_arg, u_short port, const char *proxy_command) in ssh_proxy_fdpass_connect() argument
121 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_fdpass_connect()
189 u_short port, const char *proxy_command) in ssh_proxy_connect() argument
204 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_connect()
553 if (options.proxy_command == NULL) { in ssh_connect()
556 } else if (strcmp(options.proxy_command, "-") == 0) { in ssh_connect()
569 options.proxy_command); in ssh_connect()
572 options.proxy_command); in ssh_connect()
[all …]
H A Dssh.c462 direct = option_clear_or_none(options.proxy_command) && in resolve_canonicalize()
926 if (options.proxy_command != NULL) in main()
930 options.proxy_command = xstrdup("none"); in main()
1279 direct = option_clear_or_none(options.proxy_command) && in main()
1351 if (options.proxy_command != NULL) in main()
1356 xasprintf(&options.proxy_command, in main()
1377 options.proxy_command); in main()
1389 if (options.proxy_command != NULL && in main()
1390 strcmp(options.proxy_command, "-") == 0 && in main()
1716 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.c1537 charptr = &options->proxy_command; in process_config_line_depth()
2727 options->proxy_command = NULL; in initialize_options()
3058 CLEAR_ON_NONE(options->proxy_command); in fill_default_options()
3130 free(o->proxy_command); in free_options()
3412 active &= o->proxy_command == NULL && o->jump_host == NULL; in parse_jump()
3454 o->proxy_command = xstrdup("none"); in parse_jump()
3861 dump_cfg_string(oProxyCommand, o->proxy_command); in dump_client_config()
H A Dclientloop.c1479 } else if (!option_clear_or_none(options.proxy_command) || in client_loop()