Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Trim protocol field from spaces in WS classes. | Fabio Alessandrelli | 2019-10-16 | 1 | -3/+9 |
| | |||||
* | Custom headers support in WebSocketClient. | Fabio Alessandrelli | 2019-10-09 | 1 | -4/+5 |
| | | | | | This commit also converts all PoolVector<String> parameters to `const Vector<String>` in both WebSocketServer and WebSocketClient. | ||||
* | Implement WebSocketServer SSL support. | Fabio Alessandrelli | 2019-10-09 | 1 | -1/+20 |
| | |||||
* | Re-implement WebSocket get host/port. | Fabio Alessandrelli | 2019-10-09 | 1 | -1/+3 |
| | | | | Was lost during library switch | ||||
* | Replace last occurrences of 'ERR_EXPLAIN' with 'ERR_FAIL_*_MSG' | Rémi Verschelde | 2019-08-17 | 1 | -13/+12 |
| | | | | | | | | | | The last remaining ERR_EXPLAIN call is in FreeType code and makes sense as is (conditionally defines the error message). There are a few ERR_EXPLAINC calls for C-strings where String is not included which can stay as is to avoid adding additional _MSGC macros just for that. Part of #31244. | ||||
* | Replace 'ERR_EXPLAIN' with 'ERR_FAIL_*_MSG' in rest of 'modules/' | Robin Hübner | 2019-08-12 | 1 | -23/+7 |
| | |||||
* | (Re-)Implement subprotocols in websocket server. | Fabio Alessandrelli | 2019-07-08 | 1 | -6/+27 |
| | |||||
* | Optimize header reads (avoid extra allocs) | Fabio Alessandrelli | 2019-07-04 | 1 | -17/+26 |
| | |||||
* | WebSocket module now uses wslay library. | Fabio Alessandrelli | 2019-07-04 | 1 | -0/+272 |
Both client and server are supported on native builds (as usual). SSL server is still not supported, but will soon be possible with this new library. The API stays the same, we just need to work out potential issues due to this big library switch. |