hermes

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

commit e597d2b166e402888f4562691feda8d3df134ec2
parent a6ba79cd366fa8fd9208d9cb70b58d8be51f67dc
Author: Francesco Saccone <francesco@francescosaccone.com>
Date:   Mon, 31 Mar 2025 13:51:41 +0200

build: add utils.c

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

Diffstat:
MMakefile | 2+-
1 file 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 +SOURCES = hermes.c socket.c http.c utils.c hermes: $(SOURCES:.c=.o) $(CC) $(CFLAGS) -o $@ $^