(svn r14045) -Codechange: move the network's limitation to chat messages to a more logical location and give it a more consistent name.

This commit is contained in:
rubidium
2008-08-11 22:07:26 +00:00
parent eb461386ce
commit 0fab1dc699
5 changed files with 8 additions and 9 deletions

View File

@@ -32,6 +32,7 @@ enum {
NETWORK_PLAYERS_LENGTH = 200, ///< The maximum length for the list of players that controls a company, in bytes including '\0'
NETWORK_CLIENT_NAME_LENGTH = 25, ///< The maximum length of a player, in bytes including '\0'
NETWORK_RCONCOMMAND_LENGTH = 500, ///< The maximum length of a rconsole command, in bytes including '\0'
NETWORK_CHAT_LENGTH = 1000, ///< The maximum length of a chat message, in bytes including '\0'
NETWORK_GRF_NAME_LENGTH = 80, ///< Maximum length of the name of a GRF
/**