summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/util/server_wss.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/util/server_wss.hpp')
-rw-r--r--src/lib/util/server_wss.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/util/server_wss.hpp b/src/lib/util/server_wss.hpp
index 000c00bf83d..ecf46fb1524 100644
--- a/src/lib/util/server_wss.hpp
+++ b/src/lib/util/server_wss.hpp
@@ -70,6 +70,11 @@ namespace webpp {
});
}
};
+
+ class wss_server : public SocketServer<WSS> {
+ public:
+ wss_server(const std::string& cert_file, const std::string& private_key_file,const std::string& verify_file = std::string()) : SocketServer<WSS>::SocketServer(cert_file, private_key_file, verify_file) {}
+ };
}