Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Commands/
H A DCommandObjectMultiword.cpp310 CommandObject *proxy_command = GetProxyCommandObject(); in GetOptions() local
311 if (proxy_command) in GetOptions()
312 return proxy_command->GetOptions(); in GetOptions()
317 CommandObject *proxy_command = GetProxyCommandObject(); in GetHelp() local
318 if (proxy_command) in GetHelp()
319 return proxy_command->GetHelp(); in GetHelp()
324 CommandObject *proxy_command = GetProxyCommandObject(); in GetSyntax() local
325 if (proxy_command) in GetSyntax()
326 return proxy_command->GetSyntax(); in GetSyntax()
331 CommandObject *proxy_command = GetProxyCommandObject(); in GetHelpLong() local
[all …]
/openbsd-src/usr.bin/ssh/
H A Dsshconnect.c77 expand_proxy_command(const char *proxy_command, const char *user, in expand_proxy_command() argument
85 xasprintf(&tmp, "exec %s", proxy_command); in expand_proxy_command()
103 const char *host_arg, u_short port, const char *proxy_command) in ssh_proxy_fdpass_connect() argument
117 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_fdpass_connect()
185 u_short port, const char *proxy_command) in ssh_proxy_connect() argument
200 command_string = expand_proxy_command(proxy_command, options.user, in ssh_proxy_connect()
421 * second). If proxy_command is non-NULL, it specifies the command (with %h
530 if (options.proxy_command == NULL) { in ssh_connect()
533 } else if (strcmp(options.proxy_command, "-") == 0) { in ssh_connect()
546 options.proxy_command); in ssh_connect()
[all...]
H A Dssh.c449 direct = option_clear_or_none(options.proxy_command) && in resolve_canonicalize()
880 if (options.proxy_command != NULL) in main()
884 options.proxy_command = xstrdup("none"); in main()
1229 direct = option_clear_or_none(options.proxy_command) && in main()
1299 if (options.proxy_command != NULL) in main()
1304 xasprintf(&options.proxy_command, in main()
1325 options.proxy_command); in main()
1335 if (options.proxy_command != NULL && in main()
1336 strcmp(options.proxy_command, "-") == 0 && in main()
1593 if (addrs == NULL && options.proxy_command in main()
[all...]
H A Dreadconf.h74 char *proxy_command; /* Proxy command for connecting the host. */
75 char *proxy_command; /* Proxy command for connecting the host. */ global() member
H A Dreadconf.c1464 charptr = &options->proxy_command; in process_config_line_depth()
2624 options->proxy_command = NULL; in initialize_options()
2948 CLEAR_ON_NONE(options->proxy_command); in free_options()
3020 free(o->proxy_command); in parse_fwd_field()
3302 active &= o->proxy_command == NULL && o->jump_host == NULL; in parse_ssh_uri()
3344 o->proxy_command = xstrdup("none"); in fmt_intarg()
3750 dump_cfg_string(oProxyCommand, o->proxy_command);
H A Dclientloop.c1468 } else if (!option_clear_or_none(options.proxy_command) || in client_loop()