aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_websocket.cpp
Commit message (Collapse)AuthorAgeFilesLines
* WebSocket: send messages as text by default.Gravatar Peter Powell2018-11-031-4/+27
| | | | | | This requires all messages to be UTF-8. If you are using a UTF-8 incompatible text encoding then you can disable this by setting <websocket:sendastext> to false.
* WebSocket: use one WebSocket message per IRC message.Gravatar Peter Powell2018-10-311-8/+42
| | | | | This makes more sense for WebSocket clients than CR+LF termination as the protocol already understands the concept of messages.
* Require WebSocket origins to be whitelisted in order to connect.Gravatar Peter Powell2018-10-101-2/+50
| | | | Fixes #1281.
* Unite SSL service providers and SSL profile classesGravatar Attila Molnar2017-11-131-2/+2
|
* Clean up OnCleanup.Gravatar Peter Powell2017-10-181-2/+2
| | | | | | | | | - Switch to using ExtensionItem::ExtensibleType for the type instead of TargetTypeFlags. - Pass the extensible to OnCleanup as an Extensible pointer instead of a void pointer. - Call OnCleanup for memberships as well as channels and users. - Rewrite event documentation to remove outdated references.
* Add WebSocket moduleGravatar Attila Molnar2016-08-081-0/+405