]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/channels.h
Changed m_sqlauth to allow more advanced encryption types
[user/henk/code/inspircd.git] / include / channels.h
index dac6713762082f1c04ec9e8db3eda0b9653bbbea..2e1ede57c137d4cec0606f052f3877bf64ab5a64 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
+ *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
  *                       E-mail:
  *                <brain@chatspike.net>
  *               <Craig@chatspike.net>
  * ---------------------------------------------------
  */
 
+#ifndef __CHANNELS_H__
+#define __CHANNELS_H__
+
 #include "inspircd_config.h"
 #include "base.h"
 #include <time.h>
 #include <vector>
 #include <string>
-
-#ifndef __CHANNELS_H__
-#define __CHANNELS_H__
+#include <map>
 
 #define CM_TOPICLOCK 1
 #define CM_NOEXTERNAL 2
@@ -71,19 +72,6 @@ class InviteItem : public HostItem
 {
 };
 
-
-/** Holds a custom parameter to a module-defined channel mode
-  * e.g. for +L this would hold the channel name.
-  */
-
-class ModeParameter : public classbase
-{
- public:
-       char mode;
-       char parameter[MAXBUF];
-       char channel[CHANMAX];
-};
-
 /** Holds a complete ban list
  */
 typedef std::vector<BanItem>   BanList;
@@ -109,13 +97,20 @@ class chanrec : public Extensible
        /** Custom modes for the channel.
         * Plugins may use this field in any way they see fit.
         */
-       char custom_modes[MAXMODES];     /* modes handled by modules */
+       char custom_modes[190];     /* modes handled by modules */
 
        /** User list (casted to char*'s to stop forward declaration stuff)
         * (chicken and egg scenario!)
         */
-       std::vector<char*> internal_userlist;
-       
+       std::map<char*,char*> internal_userlist;
+       std::map<char*,char*> internal_op_userlist;
+       std::map<char*,char*> internal_halfop_userlist;
+       std::map<char*,char*> internal_voice_userlist;
+
+       /** Parameters for custom modes
+        */
+       std::map<char,char*> custom_mode_params;
+
        /** Channel topic.
         * If this is an empty string, no channel topic is set.
         */
@@ -198,6 +193,9 @@ class chanrec : public Extensible
         * as this is a very fast 32 or 64 bit integer comparison.
         */
        void AddUser(char* castuser);
+       void AddOppedUser(char* castuser);
+       void AddHalfoppedUser(char* castuser);
+       void AddVoicedUser(char* castuser);
 
         /** Delete a user pointer to the internal reference list
         * @param castuser This should be a pointer to a userrec, casted to char*
@@ -207,6 +205,9 @@ class chanrec : public Extensible
          * as this is a very fast 32 or 64 bit integer comparison.
          */
        void DelUser(char* castuser);
+       void DelOppedUser(char* castuser);
+       void DelHalfoppedUser(char* castuser);
+       void DelVoicedUser(char* castuser);
 
        /** Obrain the internal reference list
         * The internal reference list contains a list of userrec*
@@ -217,7 +218,10 @@ class chanrec : public Extensible
         *
         * @return This function returns a vector of userrec pointers, each of which has been casted to char* to prevent circular references
         */
-       std::vector<char*> *GetUsers();
+       std::map<char*,char*> *GetUsers();
+       std::map<char*,char*> *GetOppedUsers();
+       std::map<char*,char*> *GetHalfoppedUsers();
+       std::map<char*,char*> *GetVoicedUsers();
 
        /** Creates a channel record and initialises it with default values
         */
@@ -253,13 +257,14 @@ class ucrec : public classbase
         */
        chanrec *channel;
 
-       ucrec() { /* stub */ }
+       ucrec() : uc_modes(0), channel(NULL) { /* stub */ }
        virtual ~ucrec() { /* stub */ }
 };
 
 chanrec* add_channel(userrec *user, const char* cn, const char* key, bool override);
 chanrec* del_channel(userrec *user, const char* cname, const char* reason, bool local);
 void kick_channel(userrec *src,userrec *user, chanrec *Ptr, char* reason);
+void server_kick_channel(userrec* user, chanrec* Ptr, char* reason, bool triggerevents);
 
 #endif