mirror of
https://github.com/osmarks/ngircd.git
synced 2025-01-20 20:36:53 +00:00
Fixed maximum length of user names, now allow up to 9 characters.
This commit is contained in:
parent
ccb747cb3b
commit
e5a19fa3a0
@ -14,6 +14,7 @@ ngIRCd CVSHEAD
|
||||
|
||||
ngIRCd 0.9.x
|
||||
|
||||
- Fixed maximum length of user names, now allow up to 9 characters.
|
||||
- Cut off oversized IRC messages that should be sent to the network instead
|
||||
of shuttding down the (wrong) connection.
|
||||
- Don't generate error messages for unknown commands received before the
|
||||
@ -612,4 +613,4 @@ ngIRCd 0.0.1, 31.12.2001
|
||||
|
||||
|
||||
--
|
||||
$Id: ChangeLog,v 1.277 2005/07/02 14:46:38 alex Exp $
|
||||
$Id: ChangeLog,v 1.278 2005/07/05 22:44:47 alex Exp $
|
||||
|
@ -8,7 +8,7 @@
|
||||
* (at your option) any later version.
|
||||
* Please read the file COPYING, README and AUTHORS for more information.
|
||||
*
|
||||
* $Id: defines.h,v 1.53 2005/07/02 14:33:45 alex Exp $
|
||||
* $Id: defines.h,v 1.54 2005/07/05 22:44:47 alex Exp $
|
||||
*/
|
||||
|
||||
|
||||
@ -50,7 +50,8 @@
|
||||
#define CLIENT_NICK_LEN 10 /* Max. nick length, see. RFC 2812
|
||||
section 1.2.1 */
|
||||
#define CLIENT_PASS_LEN 21 /* Max. password length */
|
||||
#define CLIENT_USER_LEN 9 /* Max. length of user name ("login") */
|
||||
#define CLIENT_USER_LEN 10 /* Max. length of user name ("login")
|
||||
see RFC 2812, section 1.2.1 */
|
||||
#define CLIENT_NAME_LEN 32 /* Max. length of "real names" */
|
||||
#define CLIENT_HOST_LEN 64 /* Max. host name length */
|
||||
#define CLIENT_MODE_LEN 8 /* Max. lenth of all client modes */
|
||||
|
Loading…
Reference in New Issue
Block a user