summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/http/request.hpp
diff options
context:
space:
mode:
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