diff --git a/include/http/handler.h b/include/http/handler.h index 6c7c21b..0c319d9 100644 --- a/include/http/handler.h +++ b/include/http/handler.h @@ -6,8 +6,8 @@ /* Configuration for static file serving */ typedef struct cws_handler_config { - const char *root_dir; /*< "www" */ - const char *index_file; /*< "index.html" */ + const char *root_dir; + const char *index_file; } cws_handler_config_s; /* Static file handler */ diff --git a/src/main.c b/src/main.c index 5aa4375..33790e6 100644 --- a/src/main.c +++ b/src/main.c @@ -14,7 +14,6 @@ void cws_signal_handler(int signo) { int main(void) { cws_log_init(); - cws_log_debug("Starting cws"); if (signal(SIGINT, cws_signal_handler) == SIG_ERR) { cws_log_error("signal()");