diff --git a/server_config.h b/server_config.h index 0aa7b82..d8dde80 100644 --- a/server_config.h +++ b/server_config.h @@ -9,9 +9,12 @@ typedef struct { char log_file[256]; int max_threads; bool running; + bool automatic_startup; //TODO func automatic startup on boot } ServerConfig; int load_config(const char *filename, ServerConfig *config); void init_config(ServerConfig *config); +void log_event(const char *message); -#endif \ No newline at end of file + +#endif