summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-05-07 10:51:55 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-05-07 10:51:55 +0000
commitc39489fe05469f4236d57fae6b7c8d4dad817ad6 (patch)
treecf36170a0a2e2d25463a18517cd1e9b29ba4d3e8 /src
parentffe8c3ce60e83c48aa393fa718602c070f4149e2 (diff)
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
Diffstat (limited to 'src')
-rw-r--r--src/modules/m_operjoin.cpp26
1 files changed, 25 insertions, 1 deletions
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<std::string> &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<std::string> operChans;
+ tokenize(operChan,operChans);
+ for(std::vector<std::string>::iterator it = operChans.begin(); it != operChans.end(); it++)
+ {
+ Srv->JoinUserToChannel(user,(*it),"");
+ }
}
}