]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/users.h
Changed to use __single_client_alloc, faster on most systems in a single thread
[user/henk/code/inspircd.git] / include / users.h
index 73e1a1173f5e00f9c2fd70781090b04d68d37431..7077aaa5626cc053b735a8a2b6ace42a98019481 100644 (file)
@@ -47,7 +47,7 @@ class ConnectClass : public classbase
  public:
        /** Type of line, either CC_ALLOW or CC_DENY
         */
-       int type;
+       char type;
        /** Max time to register the connection in seconds
         */
        int registration_timeout;
@@ -66,7 +66,15 @@ class ConnectClass : public classbase
 
        /** Threshold value for flood disconnect
         */
-       long threshold;
+       int threshold;
+
+       /** Maximum size of sendq for users in this class (bytes)
+        */
+       long sendqmax;
+
+       /** Maximum size of recvq for users in this class (bytes)
+        */
+       long recvqmax;
        
        ConnectClass()
        {
@@ -74,6 +82,8 @@ class ConnectClass : public classbase
                flood = 0;
                pingtime = 0;
                threshold = 0;
+               sendqmax = 0;
+               recvqmax = 0;
                strlcpy(host,"",MAXBUF);
                strlcpy(pass,"",MAXBUF);
        }
@@ -81,13 +91,13 @@ class ConnectClass : public classbase
 
 /** Holds a complete list of all channels to which a user has been invited and has not yet joined.
  */
-typedef std::vector<Invited> InvitedList;
+typedef std::vector<Invited, __single_client_alloc> InvitedList;
 
 
 
 /** Holds a complete list of all allow and deny tags from the configuration file (connection classes)
  */
-typedef std::vector<ConnectClass> ClassVector;
+typedef std::vector<ConnectClass, __single_client_alloc> ClassVector;
 
 /** Holds all information about a user
  * This class stores all information about a user connected to the irc server. Everything about a
@@ -112,12 +122,12 @@ class userrec : public connection
        
        /** The users ident reply.
         */
-       char ident[64];
+       char ident[16];
 
        /** The host displayed to non-opers (used for cloaking etc).
         * This usually matches the value of userrec::host.
         */
-       char dhost[256];
+       char dhost[160];
        
        /** The users full name.
         */
@@ -155,7 +165,7 @@ class userrec : public connection
         * If they do not send their details in this time limit they
         * will be disconnected
         */
-       unsigned long timeout;
+       unsigned int timeout;
        
        /** The oper type they logged in as, if they are an oper.
         * This is used to check permissions in operclasses, so that
@@ -170,7 +180,7 @@ class userrec : public connection
 
        /** Number of seconds between PINGs for this user (set from &lt;connect:allow&gt; tag
         */
-       unsigned long pingmax;
+       unsigned int pingmax;
 
        /** Password specified by the user when they registered.
         * This is stored even if the <connect> block doesnt need a password, so that
@@ -184,12 +194,29 @@ class userrec : public connection
         */
        std::string recvq;
 
+       /** User's send queue.
+        * Lines waiting to be sent are stored here until their buffer is flushed.
+        */
+       std::string sendq;
+
        /** Flood counters
         */
-       long lines_in;
+       int lines_in;
        time_t reset_due;
        long threshold;
 
+       /* Write error string
+        */
+       std::string WriteError;
+
+       /** Maximum size this user's sendq can become
+        */
+       long sendqmax;
+
+       /** Maximum size this user's recvq can become
+        */
+       long recvqmax;
+
        userrec();
        
        virtual ~userrec() {  }
@@ -253,8 +280,51 @@ class userrec : public connection
         * it is ok to read the buffer before calling GetBuffer().
         */
        std::string GetBuffer();
-       
+
+       /** Sets the write error for a connection. This is done because the actual disconnect
+        * of a client may occur at an inopportune time such as half way through /LIST output.
+        * The WriteErrors of clients are checked at a more ideal time (in the mainloop) and
+        * errored clients purged.
+        */
+       void SetWriteError(std::string error);
+
+       /** Returns the write error which last occured on this connection or an empty string
+        * if none occured.
+        */
+       std::string GetWriteError();
+
+       /** Adds to the user's write buffer.
+        * You may add any amount of text up to this users sendq value, if you exceed the
+        * sendq value, SetWriteError() will be called to set the users error string to
+        * "SendQ exceeded", and further buffer adds will be dropped.
+        */
+       void AddWriteBuf(std::string data);
+
+       /** Flushes as much of the user's buffer to the file descriptor as possible.
+        * This function may not always flush the entire buffer, rather instead as much of it
+        * as it possibly can. If the send() call fails to send the entire buffer, the buffer
+        * position is advanced forwards and the rest of the data sent at the next call to
+        * this method.
+        */
+       void FlushWriteBuf();
+
+       /** Returns the list of channels this user has been invited to but has not yet joined.
+        */
+       InvitedList* GetInviteList();
 };
 
+/** A lightweight userrec used by WHOWAS
+ */
+class WhoWasUser
+{
+ public:
+       char nick[NICKMAX];
+       char ident[16];
+       char dhost[160];
+       char host[160];
+       char fullname[128];
+       char server[256];
+       time_t signon;
+};
 
 #endif