aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree/servercommand.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright headers.Gravatar InspIRCd Robot2024-11-021-1/+1
|
* Use reference<>::ptr() in more places.Gravatar Sadie Powell2024-09-131-1/+1
|
* Update copyright headers.Gravatar InspIRCd Robot2024-06-071-1/+1
|
* Switch from NULL to nullptr.Gravatar Sadie Powell2022-07-221-1/+1
|
* Always use ExtractTS to extract timestamps from S2S messages.Gravatar Sadie Powell2021-09-101-4/+4
|
* Migrate collections from insert to emplace.Gravatar Sadie Powell2021-04-181-1/+1
|
* Update copyright headers.Gravatar InspIRCd Robot2020-01-111-1/+2
|
* Fix conversion issues by replacing ConvToInt with ConvToNum<T>.Gravatar Peter Powell2018-12-121-1/+1
| | | | | | | The former was a thin wrapper around atol and brought with it all of the weird parsing logic of atol which is almost never what is actually wanted. It also almost never returned the numeric type which is actually wanted which can cause weird issues when casting.
* 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.
* m_spanningtree Implement ServerCommand::RegisterService()Gravatar Attila Molnar2015-12-061-2/+5
|
* m_spanningtree Add ServerCommand::ExtractTS() to convert string to raw TSGravatar Attila Molnar2014-04-161-0/+8
| | | | Throws a ProtocolException if the input is invalid
* Automatically register ServiceProviders created by modulesGravatar attilamolnar2013-09-081-0/+1
|
* m_spanningtree Move all server-to-server command handlers into handler classesGravatar attilamolnar2013-08-181-0/+48
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.