summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWebSocket/Impl/TLSv12WebSocketConnectionImpl.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibWebSocket/Impl/TLSv12WebSocketConnectionImpl.h')
-rw-r--r--Userland/Libraries/LibWebSocket/Impl/TLSv12WebSocketConnectionImpl.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWebSocket/Impl/TLSv12WebSocketConnectionImpl.h b/Userland/Libraries/LibWebSocket/Impl/TLSv12WebSocketConnectionImpl.h
index fecdd4d38f..6cfe8b1592 100644
--- a/Userland/Libraries/LibWebSocket/Impl/TLSv12WebSocketConnectionImpl.h
+++ b/Userland/Libraries/LibWebSocket/Impl/TLSv12WebSocketConnectionImpl.h
@@ -21,7 +21,6 @@ class TLSv12WebSocketConnectionImpl final : public AbstractWebSocketImpl {
public:
virtual ~TLSv12WebSocketConnectionImpl() override;
- explicit TLSv12WebSocketConnectionImpl(Core::Object* parent = nullptr);
void connect(ConnectionInfo const& connection) override;
@@ -38,6 +37,8 @@ public:
virtual void discard_connection() override;
private:
+ explicit TLSv12WebSocketConnectionImpl(Core::Object* parent = nullptr);
+
RefPtr<TLS::TLSv12> m_socket;
};