From addfb3c8a1c2afc22d782eaeef5fcdd7ccfd01a8 Mon Sep 17 00:00:00 2001 From: Corey D Date: Tue, 15 Feb 2022 21:21:35 +1100 Subject: [PATCH] Add MAX_AUTHID_LENGTH (#1696) --- plugins/include/clients.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/include/clients.inc b/plugins/include/clients.inc index 537d9638..e9f43ef7 100644 --- a/plugins/include/clients.inc +++ b/plugins/include/clients.inc @@ -71,6 +71,7 @@ enum AuthIdType #define MAXPLAYERS 65 /**< Maximum number of players SourceMod supports */ #define MAX_NAME_LENGTH 128 /**< Maximum buffer required to store a client name */ +#define MAX_AUTHID_LENGTH 64 /**< Maximum buffer required to store any AuthID type */ public const int MaxClients; /**< Maximum number of players the server supports (dynamic) */