From 3abcc43f1e638608b4b88bbb0ad7881d74940f8d Mon Sep 17 00:00:00 2001 From: Soikk Date: Sat, 22 Nov 2025 16:42:08 +0100 Subject: Rewrites and IPC rework - Moved functionality to temporary server directory - Separated rewrites - Moved IPC back to signals - Added get_key() in config - Reworked receive_request() - Improved error handling --- src/config/config.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/config/config.h') diff --git a/src/config/config.h b/src/config/config.h index 3f74fc3..70435ac 100644 --- a/src/config/config.h +++ b/src/config/config.h @@ -5,6 +5,7 @@ #include "log/log.h" #include "list/list.h" #include "mime/mime.h" +#include "rewrites/rewrites.h" #include @@ -32,10 +33,12 @@ typedef struct config_w { config_m master_config(char *filename); config_w worker_config(char *filename); +str get_key(str file, str key); + void free_master_config(config_m *conf); void free_worker_config(config_w *conf); void print_master_config(config_m conf); void print_worker_config(config_w conf); -#endif +#endif \ No newline at end of file -- cgit v1.2.3