summaryrefslogtreecommitdiff
path: root/modules/enet/enet_connection.cpp
AgeCommit message (Collapse)Author
2021-07-30[Net] Fix ENet 'connect_to_host' creating only one channel.Fabio Alessandrelli
Passing `0` to `enet_host_create` will allow the maximum amount of channel supported by ENet. For some reasons, `connect_to_host` will instead only create 1 channel when passed `0`. This commit normalize the behaviour to always allocate the maximum allowed channels when passing `0`.
2021-07-29[Net] Implement lower level ENet wrappers.Fabio Alessandrelli