diff options
author | Attila Molnar <attilamolnar@hush.com> | 2012-07-04 05:46:57 -0700 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2012-07-04 05:46:57 -0700 |
commit | 7998173bcebb06e5e43e3337cc029eba3389199f (patch) | |
tree | 1d1271dea1e108786642148f5f8502bc1d4b9650 /src/server.cpp | |
parent | baa9ba88b78cf9de5e37dc78433c4e2f91ee9c79 (diff) | |
parent | 123845049dd09e0d14aa76d869968322b382d948 (diff) |
Merge pull request #239 from alyx/insp20
Add CHANNELLEN to isupport
Diffstat (limited to 'src/server.cpp')
-rw-r--r-- | src/server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server.cpp b/src/server.cpp index adaaa7d2c..4bd81a6d1 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -86,7 +86,7 @@ void InspIRCd::BuildISupport() std::stringstream v; v << "WALLCHOPS WALLVOICES MODES=" << Config->Limits.MaxModes << " CHANTYPES=# PREFIX=" << this->Modes->BuildPrefixes() << " MAP MAXCHANNELS=" << Config->MaxChans << " MAXBANS=60 VBANLIST NICKLEN=" << Config->Limits.NickMax; v << " CASEMAPPING=rfc1459 STATUSMSG=" << Modes->BuildPrefixes(false) << " CHARSET=ascii TOPICLEN=" << Config->Limits.MaxTopic << " KICKLEN=" << Config->Limits.MaxKick << " MAXTARGETS=" << Config->MaxTargets; - v << " AWAYLEN=" << Config->Limits.MaxAway << " CHANMODES=" << this->Modes->GiveModeList(MASK_CHANNEL) << " FNC NETWORK=" << Config->Network << " MAXPARA=32 ELIST=MU"; + v << " AWAYLEN=" << Config->Limits.MaxAway << " CHANMODES=" << this->Modes->GiveModeList(MASK_CHANNEL) << " FNC NETWORK=" << Config->Network << " MAXPARA=32 ELIST=MU" << " CHANNELLEN=" << Config->Limits.ChanMax; Config->data005 = v.str(); FOREACH_MOD(I_On005Numeric,On005Numeric(Config->data005)); Config->Update005(); |