You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
When calling
Enet::create_host
, themax_peers
argument sets the maximum peer count. However, the type of this argument isusize
, but probably less thanusize::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 likeChannelLimit
etc.The text was updated successfully, but these errors were encountered: