aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_blockamsg.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Abolish the infernal space before accessibility keywords.Gravatar Sadie Powell2022-01-251-2/+2
|
* Promote ExtensionItem::ExtensibleType to a top level enum class.Gravatar Sadie Powell2021-12-231-1/+1
|
* Apply the final keyword to all module classes where appropriate.Gravatar Sadie Powell2021-10-041-1/+1
|
* Mark all module classes as final.Gravatar Sadie Powell2021-10-011-1/+2
|
* Added -Wshorten-64-to-32 and fixed all warnings.Gravatar Dominic Hamon2021-05-301-2/+6
|
* Add ChannelManager::IsPrefix.Gravatar Sadie Powell2021-05-081-2/+2
|
* Pascalize Set in extension item classes.Gravatar Sadie Powell2021-03-171-1/+1
|
* Pascalize Get in extension item classes.Gravatar Sadie Powell2021-03-171-1/+1
|
* Merge branch 'insp3' into master.Gravatar Sadie Powell2021-03-051-0/+1
|\
| * Update copyright headers.Gravatar InspIRCd Robot2021-03-051-0/+1
| |
* | Convert ConfigTag from reference<> to std::shared_ptr<>.Gravatar Sadie Powell2020-10-311-1/+1
| |
* | Add ConfigParser::getEnum for parsing enum values.Gravatar Sadie Powell2020-05-131-12/+8
| |
* | 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-7/+2
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-02-041-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-311-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-171-4/+5
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-111-4/+5
| |
* | Move the Module parameter of ExtensionItem et al to the start.Gravatar Sadie Powell2019-08-131-1/+1
| | | | | | | | This matches what other ServiceProvider types do.
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-05-151-3/+3
|\|
| * Textual improvements and fixes such as typos, casing, etc. (#1612)Gravatar Robby2019-04-281-3/+3
| |
* | UserManager: remove fakederef.Gravatar Sadie Powell2019-02-071-1/+1
| |
* | SnomaskManager: remove fakederef.Gravatar Sadie Powell2019-02-071-1/+1
| |
* | Replace the override macro with the override keyword.Gravatar Sadie Powell2019-01-251-3/+3
|/
* Remove the original line parameter of On{Pre,Post}Command.Gravatar Peter Powell2018-08-101-1/+1
| | | | | | | | | In the brave new world of message tags and alternate wire formats this is no longer something that is appropriate to expose. In reality it was only ever used by m_alias which now reconstitutes the command name and parameters into a RFC 1459-style message for whatever it needs to do.
* Use CommandBase::Params instead of std::vector<std::string>.Gravatar Peter Powell2018-07-261-1/+1
| | | | | This is presently a typedef but will soon be replaced with a class that encapsulates both tags and parameters.
* Make more config stuff case insensitive.Gravatar Peter Powell2018-07-241-4/+4
|
* Convert ConfigTag::getDuration to return an unsigned long.Gravatar Peter Powell2018-04-161-3/+3
|
* Convert a bunch of time-related config options to getDuration.Gravatar Peter Powell2017-09-031-1/+1
|
* Switch to irc::equals() from irc::string in modules that use it for ↵Gravatar Attila Molnar2016-08-221-4/+4
| | | | comparing names of IRC objects
* Specify which Extensible subclass an ExtensionItem is valid forGravatar Attila Molnar2015-01-181-1/+2
|
* m_blockamsg Update coding style, use User::WriteNotice()Gravatar Attila Molnar2014-08-311-13/+13
|
* m_blockamsg Remove redundant checkGravatar Attila Molnar2014-08-311-1/+1
|
* m_blockamsg Uncrook channel counting logicGravatar Attila Molnar2014-08-311-11/+5
|
* m_blockamsg Prevent double copy of the target stringGravatar Attila Molnar2014-08-311-3/+3
|
* m_blockamsg Remove useless variableGravatar Attila Molnar2014-08-311-4/+1
|
* Automatically register ServiceProviders created by modulesGravatar attilamolnar2013-09-081-5/+0
|
* Replace OnRehash() with ReadConfig() that is called on boot, on module load ↵Gravatar attilamolnar2013-08-301-2/+1
| | | | | | and on rehash This eliminates the need for calling OnRehash() in init()
* Automatically attach modules to eventsGravatar attilamolnar2013-08-041-2/+0
|
* Remove $Core and $Mod* comments apart from $ModDep.Gravatar Peter Powell2013-07-041-2/+0
|
* Tidy up keywords on module methods.Gravatar Peter Powell2013-05-151-4/+4
| | | | | - 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.
* Whitespace and empty destructor removal, minor coding style changesGravatar attilamolnar2013-04-011-6/+1
|
* Register all commands, modes and extensions using AddService()Gravatar attilamolnar2012-12-021-1/+1
| | | | AddService() throws an exception if an item cannot be registered, modules no longer need to worry about AddMode() etc. failing
* 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-1/+4
|
* Remove usage of the deprecated ConfigReaderGravatar attilamolnar2012-11-121-8/+3
|
* m_blockamsg, m_sslinfo Don't convert the command name to irc::string in ↵Gravatar attilamolnar2012-09-131-5/+1
| | | | | | OnPreCommand() See 44e89aafb69fb266bdf780d12a31947bfff4e330
* m_blockamsg Remove redundant null pointer and IS_LOCAL() checkGravatar attilamolnar2012-07-131-2/+2
|
* Replace copyright headers with headers granting specific authors copyrightGravatar Robby-2012-04-191-8/+18
|