|
Lines 2332-2337
process_server_config_line_depth(ServerOptions *options, char *line,
Link Here
|
| 2332 |
goto parse_flag; |
2332 |
goto parse_flag; |
| 2333 |
|
2333 |
|
| 2334 |
case sRDomain: |
2334 |
case sRDomain: |
|
|
2335 |
#if defined(__OpenBSD__) || defined(HAVE_SYS_SET_PROCESS_RDOMAIN) |
| 2335 |
charptr = &options->routing_domain; |
2336 |
charptr = &options->routing_domain; |
| 2336 |
arg = strdelim(&cp); |
2337 |
arg = strdelim(&cp); |
| 2337 |
if (!arg || *arg == '\0') |
2338 |
if (!arg || *arg == '\0') |
|
Lines 2344-2349
process_server_config_line_depth(ServerOptions *options, char *line,
Link Here
|
| 2344 |
if (*activep && *charptr == NULL) |
2345 |
if (*activep && *charptr == NULL) |
| 2345 |
*charptr = xstrdup(arg); |
2346 |
*charptr = xstrdup(arg); |
| 2346 |
break; |
2347 |
break; |
|
|
2348 |
#else |
| 2349 |
fatal("%s line %d: setting RDomain not supported on this " |
| 2350 |
"platform.", filename, linenum); |
| 2351 |
#endif |
| 2347 |
|
2352 |
|
| 2348 |
case sDeprecated: |
2353 |
case sDeprecated: |
| 2349 |
case sIgnore: |
2354 |
case sIgnore: |
|
Lines 2840-2846
dump_config(ServerOptions *o)
Link Here
|
| 2840 |
dump_cfg_string(sHostbasedAcceptedKeyTypes, o->hostbased_key_types); |
2845 |
dump_cfg_string(sHostbasedAcceptedKeyTypes, o->hostbased_key_types); |
| 2841 |
dump_cfg_string(sHostKeyAlgorithms, o->hostkeyalgorithms); |
2846 |
dump_cfg_string(sHostKeyAlgorithms, o->hostkeyalgorithms); |
| 2842 |
dump_cfg_string(sPubkeyAcceptedKeyTypes, o->pubkey_key_types); |
2847 |
dump_cfg_string(sPubkeyAcceptedKeyTypes, o->pubkey_key_types); |
|
|
2848 |
#if defined(__OpenBSD__) || defined(HAVE_SYS_SET_PROCESS_RDOMAIN) |
| 2843 |
dump_cfg_string(sRDomain, o->routing_domain); |
2849 |
dump_cfg_string(sRDomain, o->routing_domain); |
|
|
2850 |
#endif |
| 2844 |
|
2851 |
|
| 2845 |
/* string arguments requiring a lookup */ |
2852 |
/* string arguments requiring a lookup */ |
| 2846 |
dump_cfg_string(sLogLevel, log_level_name(o->log_level)); |
2853 |
dump_cfg_string(sLogLevel, log_level_name(o->log_level)); |