|
Lines 147-153
Link Here
|
| 147 |
oPasswordAuthentication, oRSAAuthentication, |
147 |
oPasswordAuthentication, oRSAAuthentication, |
| 148 |
oChallengeResponseAuthentication, oXAuthLocation, |
148 |
oChallengeResponseAuthentication, oXAuthLocation, |
| 149 |
oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward, |
149 |
oIdentityFile, oHostName, oPort, oCipher, oRemoteForward, oLocalForward, |
| 150 |
oCertificateFile, oAddKeysToAgent, oIdentityAgent, |
150 |
oCertificateFile, oAddKeysToAgent, oAddKeysToAgentTimeout, oIdentityAgent, |
| 151 |
oUser, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand, |
151 |
oUser, oEscapeChar, oRhostsRSAAuthentication, oProxyCommand, |
| 152 |
oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts, |
152 |
oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts, |
| 153 |
oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression, |
153 |
oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression, |
|
Lines 237-242
Link Here
|
| 237 |
{ "identitiesonly", oIdentitiesOnly }, |
237 |
{ "identitiesonly", oIdentitiesOnly }, |
| 238 |
{ "certificatefile", oCertificateFile }, |
238 |
{ "certificatefile", oCertificateFile }, |
| 239 |
{ "addkeystoagent", oAddKeysToAgent }, |
239 |
{ "addkeystoagent", oAddKeysToAgent }, |
|
|
240 |
{ "addkeystoagenttimeout", oAddKeysToAgentTimeout }, |
| 240 |
{ "identityagent", oIdentityAgent }, |
241 |
{ "identityagent", oIdentityAgent }, |
| 241 |
{ "hostname", oHostName }, |
242 |
{ "hostname", oHostName }, |
| 242 |
{ "hostkeyalias", oHostKeyAlias }, |
243 |
{ "hostkeyalias", oHostKeyAlias }, |
|
Lines 1640-1645
Link Here
|
| 1640 |
multistate_ptr = multistate_yesnoaskconfirm; |
1641 |
multistate_ptr = multistate_yesnoaskconfirm; |
| 1641 |
goto parse_multistate; |
1642 |
goto parse_multistate; |
| 1642 |
|
1643 |
|
|
|
1644 |
case oAddKeysToAgentTimeout: |
| 1645 |
intptr = &options->add_keys_to_agent_timeout; |
| 1646 |
goto parse_time; |
| 1647 |
|
| 1643 |
case oIdentityAgent: |
1648 |
case oIdentityAgent: |
| 1644 |
charptr = &options->identity_agent; |
1649 |
charptr = &options->identity_agent; |
| 1645 |
goto parse_string; |
1650 |
goto parse_string; |
|
Lines 1828-1833
Link Here
|
| 1828 |
options->permit_local_command = -1; |
1833 |
options->permit_local_command = -1; |
| 1829 |
options->remote_command = NULL; |
1834 |
options->remote_command = NULL; |
| 1830 |
options->add_keys_to_agent = -1; |
1835 |
options->add_keys_to_agent = -1; |
|
|
1836 |
options->add_keys_to_agent_timeout = -1; |
| 1831 |
options->identity_agent = NULL; |
1837 |
options->identity_agent = NULL; |
| 1832 |
options->visual_host_key = -1; |
1838 |
options->visual_host_key = -1; |
| 1833 |
options->ip_qos_interactive = -1; |
1839 |
options->ip_qos_interactive = -1; |
|
Lines 1935-1940
Link Here
|
| 1935 |
/* options->hostkeyalgorithms, default set in myproposals.h */ |
1941 |
/* options->hostkeyalgorithms, default set in myproposals.h */ |
| 1936 |
if (options->add_keys_to_agent == -1) |
1942 |
if (options->add_keys_to_agent == -1) |
| 1937 |
options->add_keys_to_agent = 0; |
1943 |
options->add_keys_to_agent = 0; |
|
|
1944 |
if (options->add_keys_to_agent_timeout == -1) |
| 1945 |
options->add_keys_to_agent_timeout = 0; |
| 1938 |
if (options->num_identity_files == 0) { |
1946 |
if (options->num_identity_files == 0) { |
| 1939 |
add_identity_file(options, "~/", _PATH_SSH_CLIENT_ID_RSA, 0); |
1947 |
add_identity_file(options, "~/", _PATH_SSH_CLIENT_ID_RSA, 0); |
| 1940 |
add_identity_file(options, "~/", _PATH_SSH_CLIENT_ID_DSA, 0); |
1948 |
add_identity_file(options, "~/", _PATH_SSH_CLIENT_ID_DSA, 0); |