310 |
|
|
311 |
|
mptr->count++; |
312 |
|
|
313 |
– |
/* New patch to avoid server flooding from unregistered connects |
314 |
– |
* - Pie-Man 07/27/2000 */ |
315 |
– |
if (!IsRegistered(client_p)) |
316 |
– |
{ |
317 |
– |
/* if its from a possible server connection |
318 |
– |
* ignore it.. more than likely its a header thats sneaked through |
319 |
– |
*/ |
320 |
– |
if ((IsHandshake(client_p) || IsConnecting(client_p) || |
321 |
– |
IsServer(client_p)) && !(mptr->flags & MFLG_UNREG)) |
322 |
– |
return; |
323 |
– |
} |
324 |
– |
|
313 |
|
handler = mptr->handlers[client_p->handler]; |
314 |
|
|
315 |
|
/* check right amount of params is passed... --is */ |