diff options
| author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2018-11-03 05:46:38 +0100 |
|---|---|---|
| committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2018-11-12 22:55:17 +0100 |
| commit | c066db4d59d3c39de59062ddb24e473aa2c2a7b8 (patch) | |
| tree | 38fa43d817d7c274a60ec765cf44cd5bd51540eb /modules/websocket/websocket_multiplayer.cpp | |
| parent | 4847b5bff58378184a60834165af0c2ce3b84e94 (diff) | |
| download | redot-engine-c066db4d59d3c39de59062ddb24e473aa2c2a7b8.tar.gz | |
Convert WebSocket module to use PacketBuffer class
Diffstat (limited to 'modules/websocket/websocket_multiplayer.cpp')
| -rw-r--r-- | modules/websocket/websocket_multiplayer.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/modules/websocket/websocket_multiplayer.cpp b/modules/websocket/websocket_multiplayer.cpp index 873658559a..9a95c17e47 100644 --- a/modules/websocket/websocket_multiplayer.cpp +++ b/modules/websocket/websocket_multiplayer.cpp @@ -100,13 +100,6 @@ int WebSocketMultiplayerPeer::get_available_packet_count() const { return _incoming_packets.size(); } -int WebSocketMultiplayerPeer::get_max_packet_size() const { - - ERR_FAIL_COND_V(!_is_multiplayer, ERR_UNCONFIGURED); - - return MAX_PACKET_SIZE; -} - Error WebSocketMultiplayerPeer::get_packet(const uint8_t **r_buffer, int &r_buffer_size) { r_buffer_size = 0; |
