summaryrefslogtreecommitdiffhomepage
path: root/http.h
diff options
context:
space:
mode:
Diffstat (limited to 'http.h')
-rw-r--r--http.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/http.h b/http.h
deleted file mode 100644
index 52a1822..0000000
--- a/http.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#pragma once
-
-enum status
-{
- STATUS_OK = 200,
- STATUS_BAD_REQUEST = 400,
- STATUS_METHOD_NOT_ALLOWED = 405,
- STATUS_REQUEST_TIMEOUT = 408,
- STATUS_INTERNAL_SERVER_ERROR = 500,
- STATUS_NOT_IMPLEMENTED = 501,
- STATUS_VERSION_NOT_SUPPORTED = 505,
-};
-
-extern const char * status_str[];