hermes

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

commit 1a85f2aba8964c0a377bcd32ccb315b98f48cd01
parent 1fdc43ef44b9bcfb7a8396af85d4efd4e2a8d962
Author: Francesco Saccone <francesco@francescosaccone.com>
Date:   Sun, 30 Mar 2025 18:19:42 +0200

feat: add http_request_method enum

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

Diffstat:
Mhttp.h | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/http.h b/http.h @@ -1,4 +1,9 @@ #ifndef HTTP_H #define HTTP_H +enum http_request_method { + GET, + HEAD, +}; + #endif