summaryrefslogtreecommitdiff
path: root/modules/websocket
AgeCommit message (Collapse)Author
2018-08-30Allow WebSocket connect with no sub-protocols.Fabio Alessandrelli
2018-08-13Merge pull request #20913 from pulkomandy/masterRémi Verschelde
Rebase patches for fixing haiku build.
2018-08-11Rebase patches for fixing haiku build.Adrien Destugues
2018-08-06Fix WebSocket crash due to non PDO init.Fabio Alessandrelli
Move RingBuffer (and few related vars) to LWSPeer.
2018-07-24Removed unnecessary assignmentsWilson E. Alvarez
2018-07-18Style: Format code with clang-format 6.0.1Rémi Verschelde
2018-06-23Sanitize protocol struct, def LWS T/RX buffer sizeFabio Alessandrelli
2018-06-07Bump libwebsockets to version 3.0.0Fabio Alessandrelli
2018-06-07Thirdparty: Fill copyright for lws, miniupnpc, clipperRémi Verschelde
Rename `lws` to `libwebsockets` which is its library name. Add missing license file for mbedtls.
2018-06-06Fix LWSPeer get_connected_[host/port]Fabio Alessandrelli
2018-05-30SCons: Pass env to modules can_build methodRémi Verschelde
This allows to disable modules based on the environment, in particular `env[tools]` which tells us if we are building the editor or not.
2018-05-08Document websocket module, further document enetFabio Alessandrelli
2018-04-21Various coverity scan fixes for networkingFabio Alessandrelli
Fix FreeBSD websocket compilation error
2018-04-12Implement get_peer_[address|port] in ENet/WSServerFabio Alessandrelli
Also implement get_connected_host and get_connected_port in WebSocketPeer (not supported in HTML5 due to browser limitation). Add shorthand disconnect_peer(id) for get_peer(id)->close() like in ENet to WebSocketServer.
2018-04-03Websocket client SSL supportFabio Alessandrelli
2018-03-21s/2017/2018/g for gles2, websocket, linux appdataPoommetee Ketson
2018-03-01Remove unneeded and problematic minilex.c from lws.Fabio Alessandrelli
We don't need it, it's used upstream to test the lexical parser
2018-02-28Use Prepend instead of Append for mbedTLS includeFabio Alessandrelli
Fixes build on FreeBSD when system-wide mbedTLS and/or openSSL are installed
2018-02-21Fix typos with codespellluz.paz
Found via `codespell -q 3 --skip="./thirdparty,./editor/translations" -I ../godot-word-whitelist.txt` Whitelist consists of: ``` ang doubleclick lod nd que te unselect ```
2018-02-20Websocket module properly recognize UWP (by @vnen)George Marques
2018-02-14Allow building with system wide mbedtls on X11Fabio Alessandrelli
Using builtin_mbedtls=yes is still the default as many distributions do not ship with mbedtls included.
2018-02-14lws module now uses mbedtls as OpenSSL replacementFabio Alessandrelli
2018-02-06Relicense module to the wondeful Godot community!Fabio Alessandrelli
2018-02-06Add websocket module.Fabio Alessandrelli
Webassembly is client-only for obvious reasons. Other platforms support both client and server using libwebsockets.