From: brain Date: Fri, 21 Mar 2008 20:12:37 +0000 (+0000) Subject: Forgot to commit this X-Git-Tag: v2.0.23~3661 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=ab5858c141c5dfda2502a414271748a02470104d;p=user%2Fhenk%2Fcode%2Finspircd.git Forgot to commit this git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9152 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/src/modules/m_spanningtree/encap.cpp b/src/modules/m_spanningtree/encap.cpp new file mode 100644 index 000000000..247fd6312 --- /dev/null +++ b/src/modules/m_spanningtree/encap.cpp @@ -0,0 +1,63 @@ +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * InspIRCd: (C) 2002-2008 InspIRCd Development Team + * See: http://www.inspircd.org/wiki/index.php/Credits + * + * This program is free but copyrighted software; see + * the file COPYING for details. + * + * --------------------------------------------------- + */ + +#include "inspircd.h" +#include "xline.h" + +#include "m_spanningtree/treesocket.h" +#include "m_spanningtree/treeserver.h" +#include "m_spanningtree/utils.h" + +/* $ModDep: m_spanningtree/utils.h m_spanningtree/treeserver.h m_spanningtree/treesocket.h */ + + + +/** remote MOTD. leet, huh? */ +bool TreeSocket::Encap(const std::string &prefix, std::deque ¶ms) +{ + if (params.size() > 1) + { + if (Instance->MatchText(Instance->Config->GetSID(), params[0])) + { + Event event((char*) ¶ms, (Module*)this->Utils->Creator, "encap_received"); + event.Send(Instance); + + return true; + } + else + { + User* u = Instance->FindNick(params[0]); + + if (u && IS_LOCAL(u)) + { + Event event((char*) ¶ms, (Module*)this->Utils->Creator, "encap_received"); + event.Send(Instance); + } + + return true; + } + + if (params[0].find('*') != std::string::npos) + { + User* u = Instance->FindNick(params[0]); + if (u) + Utils->DoOneToAllButSender(prefix, "ENCAP", params, u->server); + else + Utils->DoOneToAllButSender(prefix, "ENCAP", params, params[0]); + } + else + Utils->DoOneToOne(prefix, "ENCAP", params, prefix); + } + return true; +} +