diff options
author | Peter Powell <petpow@saberuk.com> | 2017-11-15 02:35:15 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2017-11-17 18:17:55 +0000 |
commit | d8b7f36b3c402f2cb8b77410ac285d6f9066072d (patch) | |
tree | e3f02b1add4b89a8fa7b9dd467afaff2cb846a54 /src/server.cpp | |
parent | 36040be2952186d56a6646ee7d972aaafdd4e31a (diff) |
Improve LIST and implement more extended list features.
- Move the ISUPPORT token from the core into core_user and start
sending the SAFELIST token to let clients know that they can
safely run LIST on big servers.
- Add support for the channel creation time (C), topic set time
(T), and inverted glob match (N) filters as specified in the
draft-hardy-irc-isupport-00 specification.
- Clean up the logic for filtering channels by user count.
Diffstat (limited to 'src/server.cpp')
-rw-r--r-- | src/server.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/server.cpp b/src/server.cpp index 1eebdd9e0..cd0889fb2 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -190,7 +190,6 @@ void ISupportManager::Build() tokens["CHANMODES"] = ServerInstance->Modes->GiveModeList(MODETYPE_CHANNEL); tokens["CHANNELLEN"] = ConvToStr(ServerInstance->Config->Limits.ChanMax); tokens["CHANTYPES"] = "#"; - tokens["ELIST"] = "MU"; tokens["KICKLEN"] = ConvToStr(ServerInstance->Config->Limits.MaxKick); tokens["MAXTARGETS"] = ConvToStr(ServerInstance->Config->MaxTargets); tokens["MODES"] = ConvToStr(ServerInstance->Config->Limits.MaxModes); |