summaryrefslogtreecommitdiffhomepage
path: root/http.h
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2023-01-12 15:30:07 +0100
committerRoland Reichwein <mail@reichwein.it>2023-01-12 15:30:07 +0100
commit00ed7df1a09cad8862f2c586347f4f55c99681e5 (patch)
treee24ef2699affc7630ea42e728e62df7c6686f714 /http.h
parent3cb78411178f8458f889975799060e0bb866d2cf (diff)
Consolidate HTTP+HTTPS via CRTP
Diffstat (limited to 'http.h')
-rw-r--r--http.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/http.h b/http.h
index 7c3bb9a..7da60b2 100644
--- a/http.h
+++ b/http.h
@@ -6,14 +6,3 @@
#include "config.h"
#include "server.h"
-namespace HTTP {
-
-class Server: public ::Server
-{
-public:
- Server(Config& config, boost::asio::io_context& ioc, const Socket& socket, plugins_container_type& plugins, Statistics& statistics);
- virtual ~Server();
- int start() override;
-};
-
-} // namespace HTTP