Move configuration context processing into subfunctions

The functions allow simple operations on configuration context
objects. This makes it easier to understand what the code does and allows
reuse of the configuration processing code.
This commit is contained in:
Markus Makela
2016-11-12 13:22:18 +02:00
parent 11bee30f61
commit b893ca7ba8
4 changed files with 186 additions and 85 deletions

View File

@ -280,7 +280,5 @@ extern void server_update_port(SERVER *, unsigned short);
extern RESULTSET *serverGetList();
extern unsigned int server_map_status(char *str);
extern bool server_set_version_string(SERVER* server, const char* string);
extern bool server_is_ssl_parameter(const char *key);
extern void server_update_ssl(SERVER *server, const char *key, const char *value);
MXS_END_DECLS