X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmodules%2Fm_spanningtree%2Fpostcommand.cpp;h=719ff00466024f2d91094231ee66c7c0b6c3b5cb;hb=219993bc9018d9f0d9568330d7a972b68b785d27;hp=2bf252cc034d7fb2a167920d0b228feec334109e;hpb=192fa7d3138ccb5929dc9af8de3395d6ea25619c;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_spanningtree/postcommand.cpp b/src/modules/m_spanningtree/postcommand.cpp index 2bf252cc0..719ff0046 100644 --- a/src/modules/m_spanningtree/postcommand.cpp +++ b/src/modules/m_spanningtree/postcommand.cpp @@ -33,12 +33,21 @@ void ModuleSpanningTree::OnPostCommand(const std::string &command, const std::ve { /* Safe, we know its non-null because IsValidModuleCommand returned true */ Command* thiscmd = ServerInstance->Parser->GetHandler(command); + + Module* srcmodule = ServerInstance->Modules->Find(thiscmd->source); + + if (srcmodule && !(srcmodule->GetVersion().Flags & VF_COMMON)) { + ServerInstance->Logs->Log("m_spanningtree",ERROR,"Routed command %s from non-VF_COMMON module %s", + command.c_str(), thiscmd->source.c_str()); + return; + } + // this bit of code cleverly routes all module commands // to all remote severs *automatically* so that modules // can just handle commands locally, without having // to have any special provision in place for remote // commands and linking protocols. - std::deque params; + parameterlist params; params.clear(); unsigned int n_translate = thiscmd->translation.size(); TranslateType translate_to;