summaryrefslogtreecommitdiffhomepage
path: root/server.h
diff options
context:
space:
mode:
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();