change max client 128 to 256

This commit is contained in:
oc 2022-01-07 18:45:17 +08:00
parent 0dc82096f5
commit 4e175d0a81

@ -10,7 +10,7 @@ enum
NET_CONNSTATE_ERROR=4,
NET_MAX_PACKETSIZE = 1400,
NET_MAX_CLIENTS = 128
NET_MAX_CLIENTS = 256
};
typedef int (*NETFUNC_DELCLIENT)(int ClientID, const char* pReason, void *pUser);