summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWebSocket/WebSocket.h
AgeCommit message (Collapse)Author
2022-03-13Libraries: Use default constructors/destructors in LibWebSocketLenny Maiorani
https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#cother-other-default-operation-rules "The compiler is more likely to get the default semantics right and you cannot implement these functions better than the compiler."
2022-02-06LibWebSocket: Switch to using Core::StreamAli Mohammad Pur
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 :^)
2021-09-18LibWebSocket: Fix a handful of clang-tidy warnings in WebSocket.{cpp,h}Andreas Kling
2021-04-25LibWebSocket+telws: Use my own copyright headers :^)DexesTTP
Since I guess I'll start attributing my own code, might as well change it for the previously written WebSocket code too !
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-04-18LibWebSocket: Add a new websocket libraryDexesTTP
This library currently contains a basic WebSocket client that can handle both standard TCP websockets and TLS websockets.