aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree/misccommands.cpp
Commit message (Collapse)AuthorAgeFilesLines
* More const correctness work.Gravatar Sadie Powell2022-12-081-2/+2
|
* Remove some useless getter methods and make the members public.Gravatar Sadie Powell2021-04-141-2/+2
| | | | | This isn't part of a public API so we don't need to care about exposing implementation details.
* Switch simple iterator loops to use range-based for loops.Gravatar Sadie Powell2021-04-071-4/+4
|
* Merge branch 'insp3' into master.Gravatar Sadie Powell2021-02-281-1/+1
|\
| * Update copyright headers.Gravatar InspIRCd Robot2021-02-261-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-12-211-0/+6
|\|
| * Don't call events provided by dying or dead modules.Gravatar Sadie Powell2020-12-181-0/+6
| |
* | Convert FOREACH_MOD_CUSTOM to a variadic function.Gravatar Sadie Powell2020-11-101-2/+2
| |
* | Convert CmdResult to an 8-bit strongly typed enum.Gravatar Sadie Powell2020-10-271-2/+2
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-171-6/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-111-6/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-07-271-0/+35
|\|
| * Fix some regressions in sending tags between servers.Gravatar Peter Powell2019-07-221-2/+1
| |
| * Add an event for adding tags to S2S messages.Gravatar Peter Powell2019-07-191-0/+36
| |
* | SnomaskManager: remove fakederef.Gravatar Sadie Powell2019-02-071-1/+1
|/
* Use CommandBase::Params instead of std::vector<std::string>.Gravatar Peter Powell2018-07-261-2/+2
| | | | | This is presently a typedef but will soon be replaced with a class that encapsulates both tags and parameters.
* m_spanningtree Remove post-handshake BURST handlerGravatar Attila Molnar2014-07-271-6/+0
|
* m_spanningtree Allow server-to-server command handlers to specify whether ↵Gravatar attilamolnar2013-08-251-10/+2
| | | | | | they accept servers, remote users or both as the command source To make life easier for handlers accepting servers only as source, pass them a TreeServer* so they don't have to call FindServer()
* m_spanningtree Move all server-to-server command handlers into handler classesGravatar attilamolnar2013-08-181-0/+56
These commands are not registered in or called by the core. When looking for the handler of a command a new command table is searched first which contains all server-to-server commands. If a handler cannot be found in there, the core command table is consulted.