blob: e9b0c04150b5e4ed0f879cf9953b5600f23ba5f6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- src/packet.c.orig Mon Nov 15 14:41:32 2004
+++ src/packet.c Mon Nov 15 14:42:04 2004
@@ -531,7 +531,7 @@
parse_client_queued(client_p);
/* Check to make sure we're not flooding */
- if (IsPerson(client_p) &&
+ if (!(IsServer(client_p) || IsHandshake(client_p) || IsConnecting(client_p)) &&
(linebuf_alloclen(&client_p->localClient->buf_recvq) >
ConfigFileEntry.client_flood))
{
|