aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_autoop.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Add ListModeBase::CanonicalizeParam, fix cleaning extban masks.Gravatar Sadie Powell2022-04-161-2/+1
|
* Use a consistent message format for end of list numerics.Gravatar Sadie Powell2022-04-011-1/+1
|
* Abolish the infernal space before accessibility keywords.Gravatar Sadie Powell2022-01-251-2/+2
|
* Mark all mode classes as final.Gravatar Sadie Powell2021-10-011-1/+2
|
* Mark all module classes as final.Gravatar Sadie Powell2021-10-011-1/+2
|
* Switch simple iterator loops to use range-based for loops.Gravatar Sadie Powell2021-04-071-4/+5
|
* Convert various mode methods to take Mode::Change.Gravatar Sadie Powell2021-03-301-9/+11
| | | | | | | | - AccessCheck - AfterMode - BeforeMode - OnModeChange - OnRawMode
* Merge branch 'insp3' into master.Gravatar Sadie Powell2020-05-051-1/+1
|\
| * Update copyright headers.Gravatar InspIRCd Robot2020-04-241-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-04-111-1/+1
|\|
| * Update the module descriptions using mkversion.Gravatar Sadie Powell2020-04-101-1/+1
| |
* | Improve storage of module description, flags, and link data.Gravatar Sadie Powell2020-04-111-6/+3
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-02-191-3/+8
|\|
| * Add enum constants for list mode numerics.Gravatar Sadie Powell2020-02-181-3/+8
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-171-1/+4
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-111-1/+4
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-07-161-2/+4
|\|
| * Show the mode syntax in ERR_INVALIDMODEPARAM.Gravatar Peter Powell2019-06-121-0/+1
| |
| * Check the unset level in autoop as well as the set level.Gravatar Peter Powell2019-06-071-2/+3
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-05-151-1/+1
|\|
| * Some more text fixes and improvements (#1618).Gravatar Robby2019-04-281-1/+1
| |
* | ModeParser: remove fakederef.Gravatar Sadie Powell2019-02-071-3/+3
| |
* | Replace the override macro with the override keyword.Gravatar Sadie Powell2019-01-251-4/+4
|/
* Add the <maxlist> tag and switch ListModeBase to always use it.Gravatar Peter Powell2018-12-191-1/+2
| | | | | | | | | | | | | | The old method of doing this was: 1. Extremely inconsistently used. Some list modes used <banlist> and some used their own config tag. 2. Not documented in the slightest. There was a small reference to <maxbans> for the ban mode but nothing else. 3. In some cases conflicting with other config tags. The chanfilter module defined a <chanfilter> tag for general config whilst also using it for the max list settings. The new <maxlist> tag avoids these issues entirely.
* Fix a bunch more conflicting/unnamed numerics.Gravatar Peter Powell2018-08-141-1/+1
|
* Add the override keyword in places that it is missing.Gravatar Peter Powell2017-11-211-1/+1
| | | | GCCs warnings for this are much better than Clangs.
* Add support for setting the unset rank in ModeHandler.Gravatar Peter Powell2017-11-061-2/+2
|
* Convert WriteNumeric() calls to pass the parameters of the numeric as method ↵Gravatar Attila Molnar2016-02-251-4/+2
| | | | parameters
* Reduce std::string::substr() usageGravatar Attila Molnar2015-01-101-1/+1
| | | | substr() returns a new string while erase() and assign() modify the existing one
* Replace irc::modestacker usage with the new ModeParser::Process()Gravatar Attila Molnar2014-09-031-9/+3
|
* Add a ModeParser::FindMode() overload that takes a mode name and a mode typeGravatar Attila Molnar2014-02-201-8/+2
|
* Use WriteNumeric() everywhere we send numerics and include the user's nick ↵Gravatar Adam2013-11-121-4/+4
| | | | automatically
* Send ListModeBase modes implicitly on channel syncGravatar attilamolnar2013-09-121-5/+0
| | | | Remove Module::ProtoSendMode() and ListModeBase::DoSyncChannel()
* Keep lists of mode handlers by typeGravatar attilamolnar2013-09-121-3/+5
|
* Move prefix mode specific fields and getters into PrefixModeGravatar attilamolnar2013-09-111-7/+7
| | | | Add ModeHandler::IsPrefixMode()
* Automatically register ServiceProviders created by modulesGravatar attilamolnar2013-09-081-6/+0
|
* Replace OnRehash() with ReadConfig() that is called on boot, on module load ↵Gravatar attilamolnar2013-08-301-1/+1
| | | | | | and on rehash This eliminates the need for calling OnRehash() in init()
* Automatically attach modules to eventsGravatar attilamolnar2013-08-041-3/+0
|
* Remove $Core and $Mod* comments apart from $ModDep.Gravatar Peter Powell2013-07-041-2/+0
|
* Introduce ModeProcessFlags, can be passed to ModeParser::Process() to ↵Gravatar attilamolnar2013-06-131-1/+1
| | | | | | | | indicate local only mode changes and mode merges Change ProtocolInterface::SendMode() to take source and destination parameters, and call it from the mode parser whenever the mode change is global This deprecates the ambiguous InspIRCd::SendMode() and InspIRCd::SendGlobalMode() interface (the latter sent mode changes originating from local users twice, etc.)
* Tidy up keywords on module methods.Gravatar Peter Powell2013-05-151-5/+5
| | | | | - Remove virtual keyword from a ton of methods which don't need it. - Add override keyword to a ton of methods which do need it.
* Migrate u_listmode.h into the core, change +b to use itGravatar attilamolnar2013-04-081-3/+3
|
* Whitespace and empty destructor removal, minor coding style changesGravatar attilamolnar2013-04-011-1/+1
|
* Dynamically determine the size of the eventlist[] passed to Attach()Gravatar attilamolnar2012-12-021-1/+1
| | | | m_sqlauth was attached to I_OnUserDisconnect but didn't provide a handler for it, remove
* Attach to events and register services in init()Gravatar attilamolnar2012-12-021-0/+4
|
* Remove calls to ListModeBase::OnCleanup (deprecated, empty function)Gravatar attilamolnar2012-11-191-5/+0
|
* m_autoop Fix desync issue #37 reported by @Joah - part 1Gravatar attilamolnar2012-05-301-1/+1
|
* Replace copyright headers with headers granting specific authors copyrightGravatar Robby-2012-04-191-8/+15
|
* Fix bug #110Gravatar Jackmcbarn2011-01-241-10/+16
|
* Don't try to tidy m_autoop entries (fixes extra !*@*)Gravatar Daniel De Graaf2010-08-081-0/+1
|