]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/channels.cpp
Added /stats T
[user/henk/code/inspircd.git] / src / channels.cpp
index 41ca0468fa9a9fbb703a1b53cbe686130849b74f..fcc1c732d3d1912244fb4923c15d72576c1317bb 100644 (file)
@@ -119,12 +119,13 @@ chanrec::chanrec()
        strcpy(key,"");
        created = topicset = limit = users = 0;
        topiclock = noexternal = inviteonly = moderated = secret = c_private = false;
+       internal_userlist.clear();
 }
 
 void chanrec::SetCustomMode(char mode,bool mode_on)
 {
        if (mode_on) {
-               char m[3];
+               static char m[3];
                m[0] = mode;
                m[1] = '\0';
                if (!strchr(this->custom_modes,mode))
@@ -215,3 +216,28 @@ long chanrec::GetUserCounter()
 {
        return (this->users);
 }
+
+void chanrec::AddUser(char* castuser)
+{
+       internal_userlist.push_back(castuser);
+       log(DEBUG,"Added casted user to channel's internal list");
+}
+
+void chanrec::DelUser(char* castuser)
+{
+       for (std::vector<char*>::iterator a = internal_userlist.begin(); a < internal_userlist.end(); a++)
+       {
+               if (*a == castuser)
+               {
+                       log(DEBUG,"Removed casted user from channel's internal list");
+                       internal_userlist.erase(a);
+                       return;
+               }
+       }
+       log(DEBUG,"BUG BUG BUG! Attempt to remove an uncasted user from the internal list of %s!",name);
+}
+
+std::vector<char*> *chanrec::GetUsers()
+{
+       return &internal_userlist;
+}