Move the main configfile structure into configfile.c

This is required for a later refactoring of the configuration file
handling.
This commit is contained in:
Ian Barwick
2020-05-04 11:19:13 +09:00
parent 3ca642fee1
commit d37513312a
6 changed files with 11 additions and 14 deletions

View File

@@ -191,6 +191,11 @@ typedef struct
int promote_delay;
} t_configuration_options;
/* Declare the main configfile structure for client applications */
extern t_configuration_options config_file_options;
/*
* The following will initialize the structure with a minimal set of options;
* actual defaults are set in parse_config() before parsing the configuration file