|
Lines 97-103
Link Here
|
| 97 |
oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts, |
97 |
oGlobalKnownHostsFile, oUserKnownHostsFile, oConnectionAttempts, |
| 98 |
oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression, |
98 |
oBatchMode, oCheckHostIP, oStrictHostKeyChecking, oCompression, |
| 99 |
oCompressionLevel, oTCPKeepAlive, oNumberOfPasswordPrompts, |
99 |
oCompressionLevel, oTCPKeepAlive, oNumberOfPasswordPrompts, |
| 100 |
oUsePrivilegedPort, oLogLevel, oCiphers, oProtocol, oMacs, |
100 |
oUsePrivilegedPort, oTryOutgoingPrivilegedPort, oLogLevel, oCiphers, |
|
|
101 |
oProtocol, oMacs, |
| 101 |
oGlobalKnownHostsFile2, oUserKnownHostsFile2, oPubkeyAuthentication, |
102 |
oGlobalKnownHostsFile2, oUserKnownHostsFile2, oPubkeyAuthentication, |
| 102 |
oKbdInteractiveAuthentication, oKbdInteractiveDevices, oHostKeyAlias, |
103 |
oKbdInteractiveAuthentication, oKbdInteractiveDevices, oHostKeyAlias, |
| 103 |
oDynamicForward, oPreferredAuthentications, oHostbasedAuthentication, |
104 |
oDynamicForward, oPreferredAuthentications, oHostbasedAuthentication, |
|
Lines 122-127
Link Here
|
| 122 |
{ "xauthlocation", oXAuthLocation }, |
123 |
{ "xauthlocation", oXAuthLocation }, |
| 123 |
{ "gatewayports", oGatewayPorts }, |
124 |
{ "gatewayports", oGatewayPorts }, |
| 124 |
{ "useprivilegedport", oUsePrivilegedPort }, |
125 |
{ "useprivilegedport", oUsePrivilegedPort }, |
|
|
126 |
{ "tryoutgoingprivilegedport", oTryOutgoingPrivilegedPort }, |
| 125 |
{ "rhostsauthentication", oDeprecated }, |
127 |
{ "rhostsauthentication", oDeprecated }, |
| 126 |
{ "passwordauthentication", oPasswordAuthentication }, |
128 |
{ "passwordauthentication", oPasswordAuthentication }, |
| 127 |
{ "kbdinteractiveauthentication", oKbdInteractiveAuthentication }, |
129 |
{ "kbdinteractiveauthentication", oKbdInteractiveAuthentication }, |
|
Lines 360-365
Link Here
|
| 360 |
intptr = &options->use_privileged_port; |
362 |
intptr = &options->use_privileged_port; |
| 361 |
goto parse_flag; |
363 |
goto parse_flag; |
| 362 |
|
364 |
|
|
|
365 |
case oTryOutgoingPrivilegedPort: |
| 366 |
intptr = &options->try_outgoing_privileged_port; |
| 367 |
goto parse_flag; |
| 368 |
|
| 363 |
case oPasswordAuthentication: |
369 |
case oPasswordAuthentication: |
| 364 |
intptr = &options->password_authentication; |
370 |
intptr = &options->password_authentication; |
| 365 |
goto parse_flag; |
371 |
goto parse_flag; |
|
Lines 864-869
Link Here
|
| 864 |
options->xauth_location = NULL; |
870 |
options->xauth_location = NULL; |
| 865 |
options->gateway_ports = -1; |
871 |
options->gateway_ports = -1; |
| 866 |
options->use_privileged_port = -1; |
872 |
options->use_privileged_port = -1; |
|
|
873 |
options->try_outgoing_privileged_port = -1; |
| 867 |
options->rsa_authentication = -1; |
874 |
options->rsa_authentication = -1; |
| 868 |
options->pubkey_authentication = -1; |
875 |
options->pubkey_authentication = -1; |
| 869 |
options->challenge_response_authentication = -1; |
876 |
options->challenge_response_authentication = -1; |
|
Lines 941-946
Link Here
|
| 941 |
options->gateway_ports = 0; |
948 |
options->gateway_ports = 0; |
| 942 |
if (options->use_privileged_port == -1) |
949 |
if (options->use_privileged_port == -1) |
| 943 |
options->use_privileged_port = 0; |
950 |
options->use_privileged_port = 0; |
|
|
951 |
if (options->try_outgoing_privileged_port == -1) |
| 952 |
options->try_outgoing_privileged_port = 0; |
| 944 |
if (options->rsa_authentication == -1) |
953 |
if (options->rsa_authentication == -1) |
| 945 |
options->rsa_authentication = 1; |
954 |
options->rsa_authentication = 1; |
| 946 |
if (options->pubkey_authentication == -1) |
955 |
if (options->pubkey_authentication == -1) |