1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 04:37:44 +00:00

LibWebSocket: Add a new websocket library

This library currently contains a basic WebSocket client that can
handle both standard TCP websockets and TLS websockets.
This commit is contained in:
DexesTTP 2021-04-17 17:20:24 +02:00 committed by Andreas Kling
parent b30f5dc8b5
commit d3a89ce737
13 changed files with 1407 additions and 0 deletions

View file

@ -0,0 +1,10 @@
set(SOURCES
ConnectionInfo.cpp
Impl/AbstractWebSocketImpl.cpp
Impl/TCPWebSocketConnectionImpl.cpp
Impl/TLSv12WebSocketConnectionImpl.cpp
WebSocket.cpp
)
serenity_lib(LibWebSocket websocket)
target_link_libraries(LibWebSocket LibCore LibCrypto LibTLS)