From: Michael Poole Date: Sun, 16 May 2004 18:16:56 +0000 (+0000) Subject: Change default NICKLEN per CFV-0243. X-Git-Url: http://git.pk910.de/?a=commitdiff_plain;h=4878eb8548700d2851d43ee801b020bdf15d5f09;hp=5f8c9f41ca145bb7d94dd2c608da613bbeb8b35b;p=ircu2.10.12-pk.git Change default NICKLEN per CFV-0243. git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/trunk@1070 c9e4aea6-c8fd-4c43-8297-357d70d61c8c --- diff --git a/ChangeLog b/ChangeLog index 6e209de..0f3286f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2004-05-16 Michael Poole + + * doc/example.conf: Make this show the new NICKLEN default. + +2004-05-14 Kevin L Mitchell + + * ircd/ircd_features.c: per CFV-0243, NICKLEN default is increased + to 12 + 2004-05-14 Kevin L Mitchell * ircd/s_user.c: process account creation timestamp if present in diff --git a/doc/example.conf b/doc/example.conf index 39c3f1d..327f270 100644 --- a/doc/example.conf +++ b/doc/example.conf @@ -762,7 +762,7 @@ features # "HIDDEN_IP"="127.0.0.1"; # "KILLCHASETIMELIMIT"="30"; # "MAXCHANNELSPERUSER"="10"; -# "NICKLEN" = "9"; +# "NICKLEN" = "12"; # "AVBANLEN"="40"; # "MAXBANS"="30"; # "MAXSILES"="15"; diff --git a/ircd/ircd_features.c b/ircd/ircd_features.c index 1ccef68..eab84ce 100644 --- a/ircd/ircd_features.c +++ b/ircd/ircd_features.c @@ -261,7 +261,7 @@ static struct FeatureDesc { /* features that probably should not be touched */ F_I(KILLCHASETIMELIMIT, 0, 30, 0), F_I(MAXCHANNELSPERUSER, 0, 10, 0), - F_I(NICKLEN, 0, 9, 0), + F_I(NICKLEN, 0, 12, 0), F_I(AVBANLEN, 0, 40, 0), F_I(MAXBANS, 0, 45, 0), F_I(MAXSILES, 0, 15, 0),