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