enet icon indicating copy to clipboard operation
enet copied to clipboard

⚡️ ENet reliable UDP networking library

Results 9 enet issues
Sort by recently updated
recently updated
newest added

CMake, since version 3.11, introduced a feature called FetchContent. It is not very well known. For projects that utilise CMake, FetchContent aims to add a form of package management to...

When trying to use enet with various memory leak tools, they break enet when redefining 'malloc' and 'free'. Replacing the definitions in ENetCallBacks with 'emalloc' and 'efree' (and related locations...

enhancement

Different code styles are scattered troughout the library ```cpp void someFunc() { if (somCond) { } } void someSecondFunc() { if (somCond) { } } void someThirdFunc() { if (somCond)...

enhancement

I am actually developing a game that need to host game servers in user side and the NAT are a problem. UPnP does not work on all routers (no all...

Hi guys, currently in the latest version is it possible to increase the number of maximum connections on the server beyond 4096?

I made a [fork](https://github.com/tuket/ENetLANChatServer_zpl) of this demo application that shows how to scan peers in a LAN. The demo uses the original ENet. In my fork I have added a...

Some embedded platforms only support ipv4 and most of the code seems to be based on AF_INET6. Please implement a define macro so that we can switch between ipv4 and...

I was looking through the flow to try to understand the timeout values supplied to enet_peer_timeout and I'm not understanding the purpose of timeoutMinimum. I traced a change back to...

Given sample cmakelists file for those using it as a static library. Improve sectioning so that usage and demo are two separate ideas, and add note explaining which type of...