diff options
-rw-r--r-- | src/commands.cpp | 9 | ||||
-rw-r--r-- | src/modules/m_spanningtree.cpp | 32 |
2 files changed, 39 insertions, 2 deletions
diff --git a/src/commands.cpp b/src/commands.cpp index 82a6a2237..a2514f29a 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -1075,12 +1075,17 @@ void handle_list(char **parameters, int pcnt, userrec *user) void handle_rehash(char **parameters, int pcnt, userrec *user) { WriteServ(user->fd,"382 %s %s :Rehashing",user->nick,CleanFilename(CONFIG_FILE)); - ReadConfig(false,user); std::string parameter = ""; if (pcnt) + { parameter = parameters[0]; + } + else + { + WriteOpers("%s is rehashing config file %s",user->nick,CleanFilename(CONFIG_FILE)); + ReadConfig(false,user); + } FOREACH_MOD OnRehash(parameter); - WriteOpers("%s is rehashing config file %s",user->nick,CleanFilename(CONFIG_FILE)); } void handle_lusers(char **parameters, int pcnt, userrec *user) diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp index 63a68c5a9..fa22f80a1 100644 --- a/src/modules/m_spanningtree.cpp +++ b/src/modules/m_spanningtree.cpp @@ -706,6 +706,19 @@ class TreeSocket : public InspSocket return true; } + bool RemoteRehash(std::string prefix, std::deque<std::string> params) + { + if (params.size() < 1) + return true; + std::string servermask = params[0]; + if (Srv->MatchText(Srv->GetServerName(),servermask)) + { + Srv->RehashServer(); + } + DoOneToAllButSender(prefix,"REHASH",params,prefix); + return; + } + bool RemoteKill(std::string prefix, std::deque<std::string> params) { if (params.size() != 2) @@ -982,6 +995,10 @@ class TreeSocket : public InspSocket { return this->ForceTopic(prefix,params); } + else if (command == "REHASH") + { + return this->RemoteRehash(prefix,params); + } else if (command == "SQUIT") { if (params.size() == 2) @@ -1550,6 +1567,21 @@ class ModuleSpanningTree : public Module DoOneToMany(source->nick,"KILL",params); } + virtual void OnRehash(std::string parameter) + { + if (parameter != "") + { + std::deque<std::string> params; + params.push_back(parameter); + DoOneToMany(Srv->GetServerName(),"REHASH",params); + // check for self + if (Srv->MatchText(Srv->GetServerName(),parameter)) + { + Srv->RehashServer(); + } + } + } + // note: the protocol does not allow direct umode +o except // via NICK with 8 params. sending OPERTYPE infers +o modechange // locally. |