diff options
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -25,6 +25,9 @@ static int config_file_line(ws_config* config, char* key, char* value, size_t li else if(!strcmp(key, "ping")){ config->ping_interval = strtoul(value, NULL, 10); } + else if(!strcmp(key, "verbosity")){ + config->verbosity = strtoul(value, NULL, 10); + } else if(!strcmp(key, "backend")){ //clean up the previously registered backend if(config->backend.cleanup){ |