summaryrefslogtreecommitdiffhomepage
path: root/http.c
diff options
context:
space:
mode:
Diffstat (limited to 'http.c')
-rw-r--r--http.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/http.c b/http.c
deleted file mode 100644
index 7616392..0000000
--- a/http.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#include "http.h"
-
-const char * status_str[] = {
- [STATUS_OK] = "200 OK",
- [STATUS_BAD_REQUEST] = "400 Bad Request",
- [STATUS_METHOD_NOT_ALLOWED] = "405 Method Not Allowed",
- [STATUS_REQUEST_TIMEOUT] = "408 Request Timeout",
- [STATUS_INTERNAL_SERVER_ERROR] = "500 Internal Server Error",
- [STATUS_NOT_IMPLEMENTED] = "501 Not Implemented",
- [STATUS_VERSION_NOT_SUPPORTED] = "505 Version Not Supported",
-};