summaryrefslogtreecommitdiffhomepage
path: root/http.c
diff options
context:
space:
mode:
Diffstat (limited to 'http.c')
-rw-r--r--http.c14
1 files changed, 12 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 <stdio.h>
-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]);
}