Displaying 1 result from an estimated 1 matches for "snk_keyfile".
2001 Jun 06
0
snk authentication
...ications", oPreferredAuthentications },
{ "hostkeyalgorithms", oHostKeyAlgorithms },
+ { "SNKFile", oSNKFile },
{ NULL, 0 }
};
@@ -435,6 +436,10 @@
charptr = &options->system_hostfile;
goto parse_string;
+ case oSNKFile:
+ charptr = &options->snk_keyfile;
+ goto parse_string;
+
case oUserKnownHostsFile:
charptr = &options->user_hostfile;
goto parse_string;
@@ -761,6 +766,7 @@
options->num_remote_forwards = 0;
options->log_level = (LogLevel) - 1;
options->preferred_authentications = NULL;
+ options->snk_keyfile = N...