summaryrefslogtreecommitdiffhomepage
path: root/server.h
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2020-04-18 15:07:33 +0200
committerRoland Reichwein <mail@reichwein.it>2020-04-18 15:07:33 +0200
commit5400eaea898bcf6526d5c18fa8c274ee51081002 (patch)
tree437d91f177860bcca2f0900bb4018dfc15b35c21 /server.h
parent39bd177bdb80c24e73f7cf3db4239e55e13eb152 (diff)
CGI interface
Diffstat (limited to 'server.h')
-rw-r--r--server.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/server.h b/server.h
index ec674b7..11a8826 100644
--- a/server.h
+++ b/server.h
@@ -7,8 +7,6 @@
using namespace std::string_literals;
-static const std::string VersionString{ "Webserver "s + std::string{VERSION} };
-
// Base class for HTTP and HTTPS classes
class Server
{
@@ -19,6 +17,8 @@ protected:
plugins_container_type& m_plugins;
public:
+ static const std::string VersionString;
+
Server(Config& config, boost::asio::io_context& ioc, const Socket& socket, plugins_container_type& m_plugins);
virtual ~Server();