summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-03 14:11:48 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-12-03 14:11:48 +0000
commitb76828d28b778b8e2c8d16f7a7c8018bea3fb442 (patch)
tree12fa5d18f681aa098e4bb40b50fa01c1f15739f3 /src/modules
parent34b5278c3c8a19b18a135e353c44f25a94ff46cb (diff)
Fixed routing of channel privmsgs/notices to only go to servers that need them
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2124 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_spanningtree.cpp71
1 files changed, 62 insertions, 9 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp
index a4f719398..073e6c7cd 100644
--- a/src/modules/m_spanningtree.cpp
+++ b/src/modules/m_spanningtree.cpp
@@ -1161,14 +1161,47 @@ class TreeSocket : public InspSocket
}
};
+void AddThisServer(TreeServer* server, std::deque<TreeServer*> &list)
+{
+ for (unsigned int c = 0; c < list.size(); c++)
+ {
+ if (list[c] == server)
+ {
+ return;
+ }
+ }
+ list.push_back(server);
+}
+
+// returns a list of DIRECT servernames for a specific channel
+std::deque<TreeServer*> GetListOfServersForChannel(chanrec* c)
+{
+ std::deque<TreeServer*> list;
+ std::vector<char*> *ulist = c->GetUsers();
+ for (unsigned int i = 0; i < ulist->size(); i++)
+ {
+ char* o = (*ulist)[i];
+ userrec* otheruser = (userrec*)o;
+ if (std::string(otheruser->server) != Srv->GetServerName())
+ {
+ TreeServer* best = BestRouteTo(otheruser->server);
+ if (best)
+ AddThisServer(best,list);
+ }
+ }
+ return list;
+}
+
bool DoOneToAllButSenderRaw(std::string data,std::string omit,std::string prefix,std::string command,std::deque<std::string> params)
{
+ TreeServer* omitroute = BestRouteTo(omit);
if ((command == "NOTICE") || (command == "PRIVMSG"))
{
if (params.size() >= 2)
{
if (*(params[0].c_str()) != '#')
{
+ // special routing for private messages/notices
userrec* d = Srv->FindNick(params[0]);
if (d)
{
@@ -1180,9 +1213,23 @@ bool DoOneToAllButSenderRaw(std::string data,std::string omit,std::string prefix
return true;
}
}
+ else
+ {
+ chanrec* c = Srv->FindChannel(params[0]);
+ if (c)
+ {
+ std::deque<TreeServer*> list = GetListOfServersForChannel(c);
+ for (unsigned int i = 0; i < list.size(); i++)
+ {
+ TreeSocket* Sock = list[i]->GetSocket();
+ if (Sock)
+ Sock->WriteLine(data);
+ }
+ return true;
+ }
+ }
}
}
- TreeServer* omitroute = BestRouteTo(omit);
for (unsigned int x = 0; x < TreeRoot->ChildCount(); x++)
{
TreeServer* Route = TreeRoot->GetChild(x);
@@ -1551,10 +1598,13 @@ class ModuleSpanningTree : public Module
if (std::string(user->server) == Srv->GetServerName())
{
chanrec *c = (chanrec*)dest;
- std::deque<std::string> params;
- params.push_back(c->name);
- params.push_back(":"+text);
- DoOneToMany(user->nick,"NOTICE",params);
+ std::deque<TreeServer*> list = GetListOfServersForChannel(c);
+ for (unsigned int i = 0; i < list.size(); i++)
+ {
+ TreeSocket* Sock = list[i]->GetSocket();
+ if (Sock)
+ Sock->WriteLine(":"+std::string(user->nick)+" NOTICE "+std::string(c->name)+" :"+text);
+ }
}
}
}
@@ -1580,10 +1630,13 @@ class ModuleSpanningTree : public Module
if (std::string(user->server) == Srv->GetServerName())
{
chanrec *c = (chanrec*)dest;
- std::deque<std::string> params;
- params.push_back(c->name);
- params.push_back(":"+text);
- DoOneToMany(user->nick,"PRIVMSG",params);
+ std::deque<TreeServer*> list = GetListOfServersForChannel(c);
+ for (unsigned int i = 0; i < list.size(); i++)
+ {
+ TreeSocket* Sock = list[i]->GetSocket();
+ if (Sock)
+ Sock->WriteLine(":"+std::string(user->nick)+" PRIVMSG "+std::string(c->name)+" :"+text);
+ }
}
}
}