summaryrefslogtreecommitdiffhomepage
path: root/http.h
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2020-04-09 18:30:32 +0200
committerRoland Reichwein <mail@reichwein.it>2020-04-09 18:30:32 +0200
commit0d157fb407a35f8afe6d6f0f4c2cc5cd5d5a1933 (patch)
tree86ccea82ebbe29197eacb9a85e8ec7548c5ae38c /http.h
parent2f42619303627db401e469e2fd65123cd794a378 (diff)
Prepared generate_page for static-files plugin
Diffstat (limited to 'http.h')
-rw-r--r--http.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/http.h b/http.h
index d98170d..c8f27a3 100644
--- a/http.h
+++ b/http.h
@@ -10,9 +10,8 @@ namespace HTTP {
class Server: public ::Server
{
- const Socket& m_socket;
public:
- Server(Config& config, boost::asio::io_context& ioc, const Socket& socket);
+ Server(Config& config, boost::asio::io_context& ioc, const Socket& socket, plugins_container_type& plugins);
virtual ~Server();
int start() override;
};