summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/http/request.hpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-11-23 08:37:05 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-11-23 08:37:05 +0100
commitdbbd5e9c983f4fec4476855ac8571376062390d8 (patch)
treed42cc8c51030f8b7a481c35a1393962eafea484a /src/lib/http/request.hpp
parent67452fff5652fcc9f31fd691c1c435cce16911f6 (diff)
As promised, removing this part of code since it is used for compilers check, no need for this to be in release (nw)
Diffstat (limited to 'src/lib/http/request.hpp')
-rw-r--r--src/lib/http/request.hpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/lib/http/request.hpp b/src/lib/http/request.hpp
deleted file mode 100644
index fc824435cb3..00000000000
--- a/src/lib/http/request.hpp
+++ /dev/null
@@ -1,27 +0,0 @@
-// license:Boost
-// copyright-holders:Christopher M. Kohlhoff
-
-#ifndef HTTP_REQUEST_HPP
-#define HTTP_REQUEST_HPP
-
-#include <string>
-#include <vector>
-#include "header.hpp"
-
-namespace http {
-namespace server {
-
-/// A request received from a client.
-struct request
-{
- std::string method;
- std::string uri;
- int http_version_major;
- int http_version_minor;
- std::vector<header> headers;
-};
-
-} // namespace server
-} // namespace http
-
-#endif // HTTP_REQUEST_HPP