X-Git-Url: https://git.sesse.net/?p=cubemap;a=blobdiff_plain;f=config.h;h=bed0551c3e3de4709963dc0fa305b3143dfd7362;hp=e7385e2f488904a488adf00d079d67509022df9e;hb=0d72f384a1de672824298262ba5c427ec0aee2d6;hpb=f51b3892514540ff3f08ab052296091f3a6f7a93 diff --git a/config.h b/config.h index e7385e2..bed0551 100644 --- a/config.h +++ b/config.h @@ -3,8 +3,9 @@ // Various routines that deal with parsing the configuration file. -#include +#include #include +#include struct MarkPoolConfig { int from, to; @@ -21,11 +22,17 @@ struct AcceptorConfig { int port; }; +struct LogConfig { + enum { LOG_TYPE_FILE, LOG_TYPE_CONSOLE, LOG_TYPE_SYSLOG } type; + std::string filename; +}; + struct Config { int num_servers; std::vector mark_pools; std::vector streams; std::vector acceptors; + std::vector log_destinations; std::string stats_file; // Empty means no stats file. int stats_interval;