Cleaned up service configuration processing

Moved the allocation and configuration of services into their own function.
Moved SSL parameter validation into a separate function.
This commit is contained in:
Markus Makela
2016-01-16 14:24:04 +02:00
parent f12be9fea2
commit c6dfcb66f5
2 changed files with 292 additions and 415 deletions

View File

@ -153,6 +153,6 @@ void config_enable_feedback_task(void);
void config_disable_feedback_task(void);
unsigned long config_get_gateway_id(void);
GATEWAY_CONF* config_get_global_options();
bool isInternalService(char *router);
bool isInternalService(const char *router);
char* config_clean_string_list(char* str);
#endif