hermes

HTTP GET/HEAD-only web server for static content.
git clone git://git.francescosaccone.com/hermes
Log | Files | Refs | README | LICENSE

commit 7200f4346ae5b7d3022f972d6b743e2de7b0aad4
parent 5d0ed979c23c2b7d4b86cf7280b54abe4f8f2d56
Author: Francesco Saccone <francesco@francescosaccone.com>
Date:   Mon, 31 Mar 2025 15:40:46 +0200

build: rename hermes.c to main.c

Signed-off-by: Francesco Saccone <francesco@francescosaccone.com>

Diffstat:
MMakefile | 2+-
Rhermes.c -> main.c | 0
2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -2,7 +2,7 @@ include config.mk -SOURCES = hermes.c socket.c http.c utils.c +SOURCES = main.c socket.c http.c utils.c hermes: $(SOURCES:.c=.o) $(CC) $(CFLAGS) -o $@ $^ diff --git a/hermes.c b/main.c