From c39489fe05469f4236d57fae6b7c8d4dad817ad6 Mon Sep 17 00:00:00 2001 From: brain Date: Sun, 7 May 2006 10:51:55 +0000 Subject: Added satmd's multi-channel patch, and matched with inspircd coding-style and indent-style git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3937 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_operjoin.cpp | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) (limited to 'src/modules/m_operjoin.cpp') diff --git a/src/modules/m_operjoin.cpp b/src/modules/m_operjoin.cpp index c33400954..056b9e181 100644 --- a/src/modules/m_operjoin.cpp +++ b/src/modules/m_operjoin.cpp @@ -16,6 +16,25 @@ class ModuleOperjoin : public Module ConfigReader* conf; Server* Srv; + int tokenize(const string &str, std::vector &tokens) + { + // skip delimiters at beginning. + string::size_type lastPos = str.find_first_not_of(",", 0); + // find first "non-delimiter". + string::size_type pos = str.find_first_of(",", lastPos); + + while (string::npos != pos || string::npos != lastPos) + { + // found a token, add it to the vector. + tokens.push_back(str.substr(lastPos, pos - lastPos)); + // skip delimiters. Note the "not_of" + lastPos = str.find_first_not_of(",", pos); + // find next "non-delimiter" + pos = str.find_first_of(",", lastPos); + } + return tokens.size(); + } + public: ModuleOperjoin(Server* Me) : Module::Module(Me) @@ -50,7 +69,12 @@ class ModuleOperjoin : public Module { if(operChan != "") { - Srv->JoinUserToChannel(user,operChan,""); + std::vector operChans; + tokenize(operChan,operChans); + for(std::vector::iterator it = operChans.begin(); it != operChans.end(); it++) + { + Srv->JoinUserToChannel(user,(*it),""); + } } } -- cgit v1.2.3