lsalzman / enet

ENet reliable UDP networking library
MIT License
2.71k stars 668 forks source link

ENet mode Clustering #264

Open corentin35000 opened 3 weeks ago

corentin35000 commented 3 weeks ago

I would like to know if anyone has already started or tried to modify the ENet code so that it is in clustering mode (especially for kubernetes), I need each instance/pod (so one enet server per pod ), has access to all enet peers currently connected to all enet servers ?

nxrighthere commented 3 weeks ago

There's no need to modify ENet's source code for that. You can build an abstraction on top of it, where each node communicates with a master using your custom abstraction of peers.

corentin35000 commented 3 weeks ago

Ok thank you for response :)