Displaying 2 results from an estimated 2 matches for "canonicalize_fallback_local".
Did you mean:
canonicalise_fallback_local
2014 Jan 19
1
For the default of CanonicalizeFallbackLocal
...fail instantly if
CanonicalizeHostname is enabled and the target hostname cannot be
found in any of the domains specified by CanonicalDomains.
but, I think in the "yes".
In the source code...
1476 initialize_options(Options * options)
1477 {
1561 options->canonicalize_fallback_local = -1;
1563 }
1571 fill_default_options(Options * options)
1572 {
1720 if (options->canonicalize_fallback_local == -1)
1721 options->canonicalize_fallback_local = 1;
1738 }
try,
"myserver" can name resolution but, "myserver.localdomain.local" can not.
<.ssh/c...
2014 Feb 10
0
[PATCH] Basic SCTP support for OpenSSH client and server
...ions->connect_via_sctp;
+ goto parse_flag;
+
case oCanonicalizeHostname:
intptr = &options->canonicalize_hostname;
multistate_ptr = multistate_canonicalizehostname;
@@ -1550,6 +1559,7 @@ initialize_options(Options * options)
options->canonicalize_max_dots = -1;
options->canonicalize_fallback_local = -1;
options->canonicalize_hostname = -1;
+ options->connect_via_sctp = -1;
}
/*
@@ -1709,6 +1719,8 @@ fill_default_options(Options * options)
options->canonicalize_fallback_local = 1;
if (options->canonicalize_hostname == -1)
options->canonicalize_hostname = SSH_CANON...