Open
Description
When calling Enet::create_host
, the max_peers
argument sets the maximum peer count. However, the type of this argument is usize
, but probably less than usize::MAX
peers are supported. Finding out the maximum count most likely needs to be done by looking into the ENet docs + source. It can then be turned into a specific enum like ChannelLimit
etc.
Activity