]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/users.cpp
Customizable by-byte-size recvq stuff
[user/henk/code/inspircd.git] / src / users.cpp
index 9d0367a9a062e19fb4edf5f6673cdc64fb3ccd1a..0060b45ee4f6c408e4921f5a11637cba5f1d7537 100644 (file)
@@ -183,6 +183,11 @@ bool userrec::AddBuffer(std::string a)
                if (recvq[i++] == '\n')
                        break;
        }
+       if (recvq.length() > this->recvqmax)
+       {
+               this->SetWriteError("RecvQ exceeded");
+               WriteOpers("*** User %s RecvQ of %d exceeds connect class maximum of %d",this->nick,recvq.length(),this->recvqmax);
+       }
        // return false if we've had more than 600 characters WITHOUT
        // a carriage return (this is BAD, drop the socket)
        return (i < 600);