]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/users.h
Remove ZapThisDns
[user/henk/code/inspircd.git] / include / users.h
index b1f784bb3e5d4b4d9a57d6e3e1efbaf192114b13..c91b2635a55e6cb82efa0b274ce979ef5025fb15 100644 (file)
@@ -52,6 +52,14 @@ enum UserModes {
        UM_OPERATOR = 'o'-65,
 };
 
+enum RegistrationState {
+       REG_NONE = 0,           /* Has sent nothing */
+       REG_USER = 1,           /* Has sent USER */
+       REG_NICK = 2,           /* Has sent NICK */
+       REG_NICKUSER = 3,       /* Bitwise combination of REG_NICK and REG_USER */
+       REG_ALL = 7             /* REG_NICKUSER plus next bit along */
+};
+
 /** Holds a channel name to which a user has been invited.
  */
 class Invited : public classbase
@@ -170,6 +178,11 @@ class userrec : public connection
         */
        char modes[64];
 
+       /** What snomasks are set on this user.
+        * This functions the same as the above modes.
+        */
+       char snomasks[64];
+
        UserChanList chans;
        
        /** The server the user is connected to.
@@ -233,7 +246,7 @@ class userrec : public connection
 
        /** IPV4 ip address
         */
-       in_addr ip4;
+       insp_inaddr ip4;
 
        /* Write error string
         */
@@ -264,10 +277,25 @@ class userrec : public connection
         */
        virtual char* GetFullRealHost();
 
+       /*
+        * Create a displayable mode string for this users umodes
+        */
+       const char* FormatNoticeMasks();
+
+       bool userrec::ProcessNoticeMasks(const char *sm);
+
+       bool IsNoticeMaskSet(unsigned char sm);
+
+       void SetNoticeMask(unsigned char sm, bool value);
+
        /*
         * Create a displayable mode string for this users umodes
         */
        const char* FormatModes();
+
+       bool IsModeSet(unsigned char m);
+
+       void SetMode(unsigned char m, bool value);
        
        /** Returns true if a user is invited to a channel.
         */
@@ -378,7 +406,7 @@ class userrec : public connection
 
 /** Used to hold WHOWAS information
  */
-class WhoWasGroup
+class WhoWasGroup : public classbase
 {
  public:
        char* host;
@@ -401,9 +429,9 @@ void kill_link(userrec *user,const char* r);
 void kill_link_silent(userrec *user,const char* r);
 void AddWhoWas(userrec* u);
 void MaintainWhoWas(time_t TIME);
-void AddClient(int socket, int port, bool iscached, in_addr ip4);
+void AddClient(int socket, int port, bool iscached, insp_inaddr ip4);
 void FullConnectUser(userrec* user, CullList* Goners);
-userrec* ReHashNick(char* Old, char* New);
+userrec* ReHashNick(const char* Old, const char* New);
 void force_nickchange(userrec* user,const char* newnick);
 
 /* Configuration callbacks */