1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:57:35 +00:00

LibWebSocket: Switch to using Core::Stream

As LibTLS now supports the Core::Stream APIs, we can get rid of the
split paths for TCP/TLS and significantly simplify the code as well.
Provided to you free of charge by the Core::Stream-ification team :^)
This commit is contained in:
Ali Mohammad Pur 2022-02-04 14:13:30 +03:30 committed by Andreas Kling
parent d66c513131
commit 3f614a8fca
11 changed files with 142 additions and 348 deletions

View file

@ -1,8 +1,6 @@
set(SOURCES
ConnectionInfo.cpp
Impl/AbstractWebSocketImpl.cpp
Impl/TCPWebSocketConnectionImpl.cpp
Impl/TLSv12WebSocketConnectionImpl.cpp
Impl/WebSocketImpl.cpp
WebSocket.cpp
)