summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_alias.cpp7
-rw-r--r--src/modules/m_helpop.cpp2
-rw-r--r--src/modules/m_spanningtree.cpp28
3 files changed, 34 insertions, 3 deletions
diff --git a/src/modules/m_alias.cpp b/src/modules/m_alias.cpp
index 837750da8..b3544a960 100644
--- a/src/modules/m_alias.cpp
+++ b/src/modules/m_alias.cpp
@@ -38,8 +38,9 @@ class ModuleAlias : public Module
Server *Srv;
ConfigReader *MyConf;
std::vector<Alias> Aliases;
- public:
- /* XXX - small issue, why is this marked public when it's not (really) intended for external use */
+
+ /* XXX - small issue, why is this marked public when it's not (really) intended for external use
+ * Fixed 30/11/05 by Brain as suggestion by w00t */
virtual void ReadAliases()
{
Aliases.clear();
@@ -59,6 +60,8 @@ class ModuleAlias : public Module
}
}
+
+ public:
ModuleAlias()
{
diff --git a/src/modules/m_helpop.cpp b/src/modules/m_helpop.cpp
index 9fd3052b7..ca4b4fed3 100644
--- a/src/modules/m_helpop.cpp
+++ b/src/modules/m_helpop.cpp
@@ -76,7 +76,7 @@ void handle_helpop(char **parameters, int pcnt, userrec *user)
for (int i = 1; output != ""; i++)
{
snprintf(a,MAXBUF,"line%d",i);
- /* XXX - "nohelpo" ? or "nohelp", as above */
+ /* "nohelpo" for opers "nohelp" for users */
output = helpop->ReadValue("nohelpo", std::string(a), 0);
if (output != "")
{
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp
index d63c11cbf..0c8f03699 100644
--- a/src/modules/m_spanningtree.cpp
+++ b/src/modules/m_spanningtree.cpp
@@ -669,6 +669,22 @@ class TreeSocket : public InspSocket
return true;
}
+ bool RemoteKill(std::string prefix, std::deque<std::string> params)
+ {
+ if (params.size() != 2)
+ return true;
+ std::string nick = params[0];
+ std::string reason = params[1];
+ userrec* u = Srv->FindNick(prefix);
+ userrec* who = Srv->FindNick(nick);
+ if (who)
+ {
+ DoOneToAllButSender(prefix,"KILL",params,u->server)
+ Srv->QuitUser(who,reason);
+ }
+ return true;
+ }
+
bool RemoteServer(std::string prefix, std::deque<std::string> params)
{
if (params.size() < 4)
@@ -914,6 +930,10 @@ class TreeSocket : public InspSocket
{
return this->ForceMode(prefix,params);
}
+ else if (command == "KILL")
+ {
+ return this->RemoteKill(prefix,params);
+ }
else if (command == "SQUIT")
{
if (params.size() == 2)
@@ -1446,6 +1466,14 @@ class ModuleSpanningTree : public Module
}
}
+ virtual void OnRemoteKill(userrec* source, userrec* dest, std::string reason)
+ {
+ std::deque<std::string> params;
+ params.push_back(dest->nick);
+ params.push_back(":"+reason);
+ DoOneToMany(source->nick,"KILL",params);
+ }
+
// note: the protocol does not allow direct umode +o except
// via NICK with 8 params. sending OPERTYPE infers +o modechange
// locally.