|
Lines 156-162
typedef enum {
Link Here
|
| 156 |
oPubkeyAuthentication, |
156 |
oPubkeyAuthentication, |
| 157 |
oKbdInteractiveAuthentication, oKbdInteractiveDevices, oHostKeyAlias, |
157 |
oKbdInteractiveAuthentication, oKbdInteractiveDevices, oHostKeyAlias, |
| 158 |
oDynamicForward, oPreferredAuthentications, oHostbasedAuthentication, |
158 |
oDynamicForward, oPreferredAuthentications, oHostbasedAuthentication, |
| 159 |
oHostKeyAlgorithms, oBindAddress, oPKCS11Provider, |
159 |
oHostKeyAlgorithms, oBindAddress, oPKCS11Provider, oRDomain, |
| 160 |
oClearAllForwardings, oNoHostAuthenticationForLocalhost, |
160 |
oClearAllForwardings, oNoHostAuthenticationForLocalhost, |
| 161 |
oEnableSSHKeysign, oRekeyLimit, oVerifyHostKeyDNS, oConnectTimeout, |
161 |
oEnableSSHKeysign, oRekeyLimit, oVerifyHostKeyDNS, oConnectTimeout, |
| 162 |
oAddressFamily, oGssAuthentication, oGssDelegateCreds, |
162 |
oAddressFamily, oGssAuthentication, oGssDelegateCreds, |
|
Lines 305-310
static struct {
Link Here
|
| 305 |
{ "pubkeyacceptedkeytypes", oPubkeyAcceptedKeyTypes }, |
305 |
{ "pubkeyacceptedkeytypes", oPubkeyAcceptedKeyTypes }, |
| 306 |
{ "ignoreunknown", oIgnoreUnknown }, |
306 |
{ "ignoreunknown", oIgnoreUnknown }, |
| 307 |
{ "proxyjump", oProxyJump }, |
307 |
{ "proxyjump", oProxyJump }, |
|
|
308 |
{ "rdomain", oRDomain }, |
| 308 |
|
309 |
|
| 309 |
{ NULL, oBadOption } |
310 |
{ NULL, oBadOption } |
| 310 |
}; |
311 |
}; |
|
Lines 1645-1650
parse_keytypes:
Link Here
|
| 1645 |
charptr = &options->identity_agent; |
1646 |
charptr = &options->identity_agent; |
| 1646 |
goto parse_string; |
1647 |
goto parse_string; |
| 1647 |
|
1648 |
|
|
|
1649 |
case oRDomain: |
| 1650 |
charptr = &options->rdomain; |
| 1651 |
goto parse_string; |
| 1652 |
|
| 1648 |
case oDeprecated: |
1653 |
case oDeprecated: |
| 1649 |
debug("%s line %d: Deprecated option \"%s\"", |
1654 |
debug("%s line %d: Deprecated option \"%s\"", |
| 1650 |
filename, linenum, keyword); |
1655 |
filename, linenum, keyword); |
|
Lines 1845-1850
initialize_options(Options * options)
Link Here
|
| 1845 |
options->update_hostkeys = -1; |
1850 |
options->update_hostkeys = -1; |
| 1846 |
options->hostbased_key_types = NULL; |
1851 |
options->hostbased_key_types = NULL; |
| 1847 |
options->pubkey_key_types = NULL; |
1852 |
options->pubkey_key_types = NULL; |
|
|
1853 |
options->rdomain = NULL; |
| 1848 |
} |
1854 |
} |
| 1849 |
|
1855 |
|
| 1850 |
/* |
1856 |
/* |
|
Lines 2534-2539
dump_client_config(Options *o, const char *host)
Link Here
|
| 2534 |
dump_cfg_string(oPubkeyAcceptedKeyTypes, o->pubkey_key_types); |
2540 |
dump_cfg_string(oPubkeyAcceptedKeyTypes, o->pubkey_key_types); |
| 2535 |
dump_cfg_string(oRevokedHostKeys, o->revoked_host_keys); |
2541 |
dump_cfg_string(oRevokedHostKeys, o->revoked_host_keys); |
| 2536 |
dump_cfg_string(oXAuthLocation, o->xauth_location); |
2542 |
dump_cfg_string(oXAuthLocation, o->xauth_location); |
|
|
2543 |
dump_cfg_string(oRDomain, o->rdomain); |
| 2537 |
|
2544 |
|
| 2538 |
/* Forwards */ |
2545 |
/* Forwards */ |
| 2539 |
dump_cfg_forwards(oDynamicForward, o->num_local_forwards, o->local_forwards); |
2546 |
dump_cfg_forwards(oDynamicForward, o->num_local_forwards, o->local_forwards); |