godot/modules/websocket
Fabio Alessandrelli d65afb2c74 Fix LWSClient connect_to_host string termination.
Coming from strncpy might get you a non-NULL terminated buffer.
The solution, if you accept trunction, is to give one less byte to
strncpy and manually set the last char in the buffer to '\0'.
If the source string is shorter, than the buffer is padded with '\0'
automatically.
2018-10-07 14:50:14 +02:00
..
doc_classes Update WebSocket documentation 2018-09-24 01:50:37 +02:00
config.py SCons: Pass env to modules can_build method 2018-05-30 19:11:36 +02:00
emws_client.cpp Implement WebSocket clean close detection. 2018-09-24 01:50:37 +02:00
emws_client.h Implement WebSocket close notify. 2018-09-24 01:50:37 +02:00
emws_peer.cpp Implement WebSocket clean close detection. 2018-09-24 01:50:37 +02:00
emws_peer.h Implement WebSocket close notify. 2018-09-24 01:50:37 +02:00
emws_server.cpp Implement WebSocket close notify. 2018-09-24 01:50:37 +02:00
emws_server.h Implement WebSocket close notify. 2018-09-24 01:50:37 +02:00
lws_client.cpp Fix LWSClient connect_to_host string termination. 2018-10-07 14:50:14 +02:00
lws_client.h Implement WebSocket close notify. 2018-09-24 01:50:37 +02:00
lws_helper.cpp Fix -Wunused-function in websocket module 2018-09-29 22:26:32 +02:00
lws_helper.h Fix -Wunused-function in websocket module 2018-09-29 22:26:32 +02:00
lws_peer.cpp Remove socket_helper.h after NetSocket refactor 2018-09-28 02:03:23 +02:00
lws_peer.h Implement WebSocket clean close detection. 2018-09-24 01:50:37 +02:00
lws_server.cpp Implement WebSocket clean close detection. 2018-09-24 01:50:37 +02:00
lws_server.h Implement WebSocket close notify. 2018-09-24 01:50:37 +02:00
register_types.cpp Make core/ includes absolute, remove subfolders from include path 2018-09-12 09:52:22 +02:00
register_types.h s/2017/2018/g for gles2, websocket, linux appdata 2018-03-21 16:07:51 +07:00
SCsub SCons: Build thirdparty code in own env, disable warnings 2018-09-28 14:07:39 +02:00
websocket_client.cpp Implement WebSocket clean close detection. 2018-09-24 01:50:37 +02:00
websocket_client.h Implement WebSocket clean close detection. 2018-09-24 01:50:37 +02:00
websocket_macros.h s/2017/2018/g for gles2, websocket, linux appdata 2018-03-21 16:07:51 +07:00
websocket_multiplayer.cpp s/2017/2018/g for gles2, websocket, linux appdata 2018-03-21 16:07:51 +07:00
websocket_multiplayer.h s/2017/2018/g for gles2, websocket, linux appdata 2018-03-21 16:07:51 +07:00
websocket_peer.cpp Implement WebSocket close notify. 2018-09-24 01:50:37 +02:00
websocket_peer.h Implement WebSocket close notify. 2018-09-24 01:50:37 +02:00
websocket_server.cpp Implement WebSocket clean close detection. 2018-09-24 01:50:37 +02:00
websocket_server.h Implement WebSocket clean close detection. 2018-09-24 01:50:37 +02:00