search for: use_roam

Displaying 4 results from an estimated 4 matches for "use_roam".

Did you mean: useroam
2016 Jan 14
0
Announce: Portable OpenSSH 7.1p2 released
...========================== --- readconf.c 30 Jul 2015 00:01:34 -0000 1.239 +++ readconf.c 13 Jan 2016 23:17:23 -0000 @@ -1648,7 +1648,7 @@ initialize_options(Options * options) options->tun_remote = -1; options->local_command = NULL; options->permit_local_command = -1; - options->use_roaming = -1; + options->use_roaming = 0; options->visual_host_key = -1; options->ip_qos_interactive = -1; options->ip_qos_bulk = -1; @@ -1819,8 +1819,7 @@ fill_default_options(Options * options) options->tun_remote = SSH_TUNID_ANY; if (options->permit_local_command == -1)...
2010 Jan 12
2
[patch] Automatically add keys to agent
.../* Textual representations of the tokens. */ @@ -232,6 +232,7 @@ static struct { #else { "zeroknowledgepasswordauthentication", oUnsupported }, #endif + { "addkeytoagent", oAddKey }, { NULL, oBadOption } }; @@ -914,6 +915,10 @@ parse_int: intptr = &options->use_roaming; goto parse_flag; + case oAddKey: + intptr = &options->add_key; + goto parse_yesnoask; + case oDeprecated: debug("%s line %d: Deprecated option \"%s\"", filename, linenum, keyword); @@ -1064,6 +1069,7 @@ initialize_options(Options * options) option...
2011 Jan 07
1
[RFC/PATCH] ssh: config directive to modify the local environment
...*/ @@ -359,6 +399,7 @@ process_config_line(Options *options, const char *host, long long orig, val64; size_t len; Forward fwd; + EnvMod mod; /* Strip trailing whitespace */ for (len = strlen(line) - 1; len > 0; len--) { @@ -997,6 +1038,20 @@ parse_int: intptr = &options->use_roaming; goto parse_flag; + case oLocalEnvMod: + /* We try to consume the complete line */ + arg = s; + s = s + strlen(s); + + if (parse_env_mod(&mod, arg) == 0) + fatal("%.200s line %d: Bad env mod specification.", + filename, linenum); + + if (*activep) { + add_local_...
2014 Nov 18
55
[Bug 2319] New: [PATCH REVIEW] U2F authentication
https://bugzilla.mindrot.org/show_bug.cgi?id=2319 Bug ID: 2319 Summary: [PATCH REVIEW] U2F authentication Product: Portable OpenSSH Version: 6.7p1 Hardware: All OS: All Status: NEW Severity: enhancement Priority: P5 Component: Miscellaneous Assignee: unassigned-bugs at