|
Lines 157-162
typedef enum {
Link Here
|
| 157 |
oPubkeyAuthentication, |
157 |
oPubkeyAuthentication, |
| 158 |
oKbdInteractiveAuthentication, oKbdInteractiveDevices, oHostKeyAlias, |
158 |
oKbdInteractiveAuthentication, oKbdInteractiveDevices, oHostKeyAlias, |
| 159 |
oDynamicForward, oPreferredAuthentications, oHostbasedAuthentication, |
159 |
oDynamicForward, oPreferredAuthentications, oHostbasedAuthentication, |
|
|
160 |
oPasswordFile, |
| 160 |
oHostKeyAlgorithms, oBindAddress, oBindInterface, oPKCS11Provider, |
161 |
oHostKeyAlgorithms, oBindAddress, oBindInterface, oPKCS11Provider, |
| 161 |
oClearAllForwardings, oNoHostAuthenticationForLocalhost, |
162 |
oClearAllForwardings, oNoHostAuthenticationForLocalhost, |
| 162 |
oEnableSSHKeysign, oRekeyLimit, oVerifyHostKeyDNS, oConnectTimeout, |
163 |
oEnableSSHKeysign, oRekeyLimit, oVerifyHostKeyDNS, oConnectTimeout, |
|
Lines 280-285
static struct {
Link Here
|
| 280 |
{ "loglevel", oLogLevel }, |
281 |
{ "loglevel", oLogLevel }, |
| 281 |
{ "dynamicforward", oDynamicForward }, |
282 |
{ "dynamicforward", oDynamicForward }, |
| 282 |
{ "preferredauthentications", oPreferredAuthentications }, |
283 |
{ "preferredauthentications", oPreferredAuthentications }, |
|
|
284 |
{ "passwordfile", oPasswordFile }, |
| 283 |
{ "hostkeyalgorithms", oHostKeyAlgorithms }, |
285 |
{ "hostkeyalgorithms", oHostKeyAlgorithms }, |
| 284 |
{ "casignaturealgorithms", oCASignatureAlgorithms }, |
286 |
{ "casignaturealgorithms", oCASignatureAlgorithms }, |
| 285 |
{ "bindaddress", oBindAddress }, |
287 |
{ "bindaddress", oBindAddress }, |
|
Lines 1261-1266
parse_char_array:
Link Here
|
| 1261 |
case oPreferredAuthentications: |
1263 |
case oPreferredAuthentications: |
| 1262 |
charptr = &options->preferred_authentications; |
1264 |
charptr = &options->preferred_authentications; |
| 1263 |
goto parse_string; |
1265 |
goto parse_string; |
|
|
1266 |
|
| 1267 |
case oPasswordFile: |
| 1268 |
charptr = &options->password_file; |
| 1269 |
goto parse_string; |
| 1264 |
|
1270 |
|
| 1265 |
case oBindAddress: |
1271 |
case oBindAddress: |
| 1266 |
charptr = &options->bind_address; |
1272 |
charptr = &options->bind_address; |
|
Lines 2069-2074
initialize_options(Options * options)
Link Here
|
| 2069 |
options->log_facility = SYSLOG_FACILITY_NOT_SET; |
2075 |
options->log_facility = SYSLOG_FACILITY_NOT_SET; |
| 2070 |
options->log_level = SYSLOG_LEVEL_NOT_SET; |
2076 |
options->log_level = SYSLOG_LEVEL_NOT_SET; |
| 2071 |
options->preferred_authentications = NULL; |
2077 |
options->preferred_authentications = NULL; |
|
|
2078 |
options->password_file = NULL; |
| 2072 |
options->bind_address = NULL; |
2079 |
options->bind_address = NULL; |
| 2073 |
options->bind_interface = NULL; |
2080 |
options->bind_interface = NULL; |
| 2074 |
options->pkcs11_provider = NULL; |
2081 |
options->pkcs11_provider = NULL; |
|
Lines 2901-2906
dump_client_config(Options *o, const char *host)
Link Here
|
| 2901 |
#endif |
2908 |
#endif |
| 2902 |
dump_cfg_string(oSecurityKeyProvider, o->sk_provider); |
2909 |
dump_cfg_string(oSecurityKeyProvider, o->sk_provider); |
| 2903 |
dump_cfg_string(oPreferredAuthentications, o->preferred_authentications); |
2910 |
dump_cfg_string(oPreferredAuthentications, o->preferred_authentications); |
|
|
2911 |
dump_cfg_string(oPasswordFile, o->password_file); |
| 2904 |
dump_cfg_string(oPubkeyAcceptedKeyTypes, o->pubkey_key_types); |
2912 |
dump_cfg_string(oPubkeyAcceptedKeyTypes, o->pubkey_key_types); |
| 2905 |
dump_cfg_string(oRevokedHostKeys, o->revoked_host_keys); |
2913 |
dump_cfg_string(oRevokedHostKeys, o->revoked_host_keys); |
| 2906 |
dump_cfg_string(oXAuthLocation, o->xauth_location); |
2914 |
dump_cfg_string(oXAuthLocation, o->xauth_location); |