From 0ce61f57957d99d43e77514fa62a5c72f953b2ce Mon Sep 17 00:00:00 2001 From: Aki Date: Fri, 1 May 2020 16:59:51 +0200 Subject: Added string map for methods and fixed statuses --- http.c | 14 ++++++++++++-- http.h | 1 + 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/http.c b/http.c index 706b982..dc0e9c8 100644 --- a/http.c +++ b/http.c @@ -2,7 +2,17 @@ #include -const char * status_string[] = { +const char * method_str[] = { + [METHOD_GET] = "GET", + [METHOD_HEAD] = "HEAD", + [METHOD_POST] = "POST", + [METHOD_PUT] = "PUT", + [METHOD_DELETE] = "DELETE", + [METHOD_OPTIONS] = "OPTIONS", + [METHOD_PATCH] = "PATCH", +}; + +const char * status_str[] = { [STATUS_OK] = "200 OK", [STATUS_BAD_REQUEST] = "400 Bad Request", [STATUS_METHOD_NOT_ALLOWED] = "405 Method Not Allowed", @@ -23,5 +33,5 @@ int respond_only_status(const int fd, const enum status status) "Connection: close\r\n" "\r\n"; - return dprintf(fd, pattern, status_string[status]); + return dprintf(fd, pattern, status_str[status]); } diff --git a/http.h b/http.h index cef3048..f92f7fc 100644 --- a/http.h +++ b/http.h @@ -25,6 +25,7 @@ enum status STATUS_VERSION_NOT_SUPPORTED = 505, }; +extern const char * method_str[]; extern const char * status_str[]; int respond_only_status(int, enum status); -- cgit v1.1