From 8e3fa84239619faf88c595160b2256fe39492f58 Mon Sep 17 00:00:00 2001 From: Azreyo <58790873+Azreyo@users.noreply.github.com> Date: Wed, 12 Feb 2025 20:14:02 +0100 Subject: [PATCH] Update server_config.h Added verbose --- server_config.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/server_config.h b/server_config.h index a8d020b..ec23a00 100644 --- a/server_config.h +++ b/server_config.h @@ -9,8 +9,9 @@ typedef struct { char log_file[256]; int max_threads; bool running; - bool automatic_startup; //TODO func automatic startup on boot - char server_name[256]; // Add this field for server name + bool automatic_startup; + char server_name[256]; + int verbose; } ServerConfig; int load_config(const char *filename, ServerConfig *config);