aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_spanningtree/servercommand.cpp
Commit message (Collapse)AuthorAgeFilesLines
* 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.