mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 08:07: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:
parent
b30f5dc8b5
commit
d3a89ce737
13 changed files with 1407 additions and 0 deletions
10
Userland/Libraries/LibWebSocket/CMakeLists.txt
Normal file
10
Userland/Libraries/LibWebSocket/CMakeLists.txt
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue