aboutsummaryrefslogtreecommitdiff
path: root/include/listmode.h
Commit message (Expand)AuthorAgeFilesLines
* Raise the default listmode limit to 100 from 64.•••64 is a rather restrictive limit especially considering how fast channels can accumulate bans. In fact, #InspIRCd hit the ban limit in just over a year. Having a low limit might have made sense when memory was expensive but the average IRC server should be able to handle this fine now. Gravatar Peter Powell2017-09-141-1/+1
* Replace the deprecated MAXBANS token with MAXLIST.Gravatar Peter Powell2017-07-241-0/+4
* Add DEFAULT_LIST_SIZE for the default list mode size.Gravatar Peter Powell2017-07-241-0/+3
* Change listmode storage type to vectorGravatar Attila Molnar2014-12-161-1/+1
* Use Modes::ChangeList in ModeHandler::RemoveMode()Gravatar Attila Molnar2014-09-031-2/+2
* Change ListModeBase::DoRehash() to not be virtualGravatar Attila Molnar2014-08-061-1/+1
* Send ListModeBase modes implicitly on channel sync•••Remove Module::ProtoSendMode() and ListModeBase::DoSyncChannel() Gravatar attilamolnar2013-09-121-8/+0
* Automatically register ServiceProviders created by modulesGravatar attilamolnar2013-09-081-4/+0
* Fix Doxygen comments.Gravatar Peter Powell2013-06-211-2/+3
* Simplify user mode removal via ModeHandler::RemoveMode()•••The function does not need to be virtual because the core can remove any user mode using the default logic The optional modestack parameter was always NULL, so remove it Gravatar attilamolnar2013-05-271-4/+0
* Deduplicate RemoveMode() implementations•••The default (core) implementation can now remove prefix modes The modestacker parameter is now mandatory Gravatar attilamolnar2013-05-271-2/+5
* Tidy up source files:•••- Use #pragma once instead of include guards. - Move header files in src/modules to include/modules. - Fixed various spacing issues. Gravatar Peter Powell2013-04-121-0/+1
* Fix ListModeBase on WindowsGravatar attilamolnar2013-04-091-1/+1
* ListModeBase: Cache max items per channelGravatar attilamolnar2013-04-081-2/+32
* ListModeBase: Minor changes to original u_listmode code•••- Add constructors to ListItem, ListLimit - Rename fields in ListItem - Store time as time_t instead of string - Store limits in a vector instead of a list - Don't deallocate the list when it becomes empty Gravatar attilamolnar2013-04-081-7/+8
* Migrate u_listmode.h into the core, change +b to use itGravatar attilamolnar2013-04-081-0/+186