change max client 128 to 256

pull/135/head
oc 2022-01-07 18:45:17 +08:00
parent 0dc82096f5
commit 4e175d0a81
1 changed files with 1 additions and 1 deletions

View File

@ -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);