summaryrefslogtreecommitdiffhomepage
path: root/http.h
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2020-08-16 21:07:17 +0200
committerAki <please@ignore.pl>2020-08-16 21:07:17 +0200
commitddb35c287bc34622879edf687952825a1259ffdb (patch)
tree1f05dc1c3b8ac8ed30fe48dc4316590e9e696a69 /http.h
parent338736f6cd60bf634ef04ab246187caa78597789 (diff)
downloadplop-ddb35c287bc34622879edf687952825a1259ffdb.zip
plop-ddb35c287bc34622879edf687952825a1259ffdb.tar.gz
plop-ddb35c287bc34622879edf687952825a1259ffdb.tar.bz2
Removed unused http header and source file
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[];