enet
enet copied to clipboard
ENet reliable UDP networking library
I think there is a problem within the control flow of enet_host_service (in the case of low RTO). From my understanding, given some non-zero event time-out x, the following occurs:...
Depending on the setup, NOMINMAX isn't defined and MIN and MAX are overriden. This just fixes the macro problem.
While breaking the code, it can easily happen for the user to timeout, would it be possible to add the feature that the user can supply the delta time to...
Apparently when using ``` while (enet_host_service(m_server, &event, 0) > 0) { switch (event.type) { case ENET_EVENT_TYPE_DISCONNECT: } } `` an event comes with peer data removed. so event.peer->data is 0...
I wanted to use Enet but i found a glaring issue of no ipv6 support. Is this something in the works? I noticed ipv6 PRs , so whats going on.
Why you fucking define the name of a header file as time. h? Don't you know that this will conflict with the standard library? 
Improves enet_protocol_send_outgoing_commands by iterating over active peers only.