aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_websocket.cpp
Commit message (Expand)AuthorAgeFilesLines
* Backport support for the IRCv3 websocket subprotocols.Gravatar Sadie Powell2024-11-071-2/+5
* Include the WebSocket fail reason in the body of the HTTP response.Gravatar Sadie Powell2022-12-251-0/+1
* Update copyright headers.Gravatar InspIRCd Robot2022-08-251-1/+1
* Fix a pedantic C++98 warning in the websocket module.Gravatar Sadie Powell2022-08-041-1/+1
* Expose WebSocket error messages to clients.Gravatar Sadie Powell2022-08-041-6/+27
* Fix parsing non-normalised WebSocket headers.•••Ref: #1987. Gravatar Sadie Powell2022-06-081-1/+1
* Make parsing websocket proxy headers more robust.Gravatar Sadie Powell2021-11-241-6/+14
* Fix parsing the Sec-WebSocket-Protocol header.Gravatar Sadie Powell2021-10-041-1/+3
* Use CXX11_OVERRIDE instead of the override keyword.Gravatar Sadie Powell2021-09-221-1/+1
* Replace <websocket:sendastext> with <websocket:defaultmode>.Gravatar Sadie Powell2021-09-221-6/+35
* Add an API for checking if I/O hooks are ready or not.Gravatar Sadie Powell2021-09-221-0/+5
* Implement support for websocket subprotocols.•••This is based on the current IRCv3 draft but using a vendored protocol. Gravatar Sadie Powell2021-08-171-2/+23
* Minor clean up of the previous commit.Gravatar Sadie Powell2021-08-171-2/+1
* Improve WebSocket header parsing.Gravatar Sadie Powell2021-08-171-12/+26
* Update copyright headers.Gravatar InspIRCd Robot2021-05-141-1/+1
* Send 400 Bad Request if a WebSocket client doesn't send an origin.Gravatar Sadie Powell2021-05-071-0/+5
* Only vendor the bits of utfcpp that we actually use.Gravatar Sadie Powell2021-05-051-2/+3
* Update copyright headers.Gravatar InspIRCd Robot2020-11-201-1/+1
* Fail websocket connections if changing the user's IP errors.Gravatar Sadie Powell2020-11-201-0/+4
* Update the module descriptions using mkversion.Gravatar Sadie Powell2020-04-101-1/+1
* Update copyright headers.Gravatar InspIRCd Robot2020-01-111-1/+3
* Fixing MatchCIDR call when checking proxy rangeGravatar iwalkalone2019-12-061-2/+2
* WebSocket: move the OriginList typedef inside WebSocketConfig.Gravatar Peter Powell2019-11-291-3/+2
* WebSocket: replace the behindproxy switch with a proxy IP list.Gravatar Peter Powell2019-11-291-7/+19
* Implement support for websocket connections via a proxy like nginx.Gravatar Peter Powell2019-11-281-0/+27
* Move WebSocket config to its own class.Gravatar Peter Powell2019-11-281-14/+21
* WebSocket: send messages as text by default.•••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. Gravatar Peter Powell2018-11-031-4/+27
* WebSocket: use one WebSocket message per IRC message.•••This makes more sense for WebSocket clients than CR+LF termination as the protocol already understands the concept of messages. Gravatar Peter Powell2018-10-311-8/+42
* Require WebSocket origins to be whitelisted in order to connect.•••Fixes #1281. Gravatar Peter Powell2018-10-101-2/+50
* Unite SSL service providers and SSL profile classesGravatar Attila Molnar2017-11-131-2/+2
* Clean up OnCleanup.•••- 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. Gravatar Peter Powell2017-10-181-2/+2
* Add WebSocket moduleGravatar Attila Molnar2016-08-081-0/+405