Serverlog entry query.
#2
It seems to happen with "invalid" client, sending aberrant datas. I must be wrong and I can't tell more.
Some parts of AC servers source :
if(chan!=1 || getint(p)!=SV_CONNECT) disconnect_client(sender, DISC_TAGT);
type = checktype(getint(p), cl);
// ...
   switch(type)
// ...
default:
{
       int size = msgsizelookup(type);
         if(size==-1) { if(sender>=0) disconnect_client(sender, DISC_TAGT); return; }
        loopi(size-1) getint(p);
         QUEUE_MSG;
         break;
}

But even with this I can't explain what it means...
Thanks given by:


Messages In This Thread
Serverlog entry query. - by Billybob - 21 Jul 10, 09:41PM
RE: Serverlog entry query. - by Luc@s - 21 Jul 10, 10:10PM
RE: Serverlog entry query. - by Kirin - 21 Jul 10, 10:28PM
RE: Serverlog entry query. - by Billybob - 21 Jul 10, 10:33PM
RE: Serverlog entry query. - by V-Man - 22 Jul 10, 07:20AM
RE: Serverlog entry query. - by RandumKiwi - 22 Jul 10, 09:45AM
RE: Serverlog entry query. - by C4rU$ - 22 Jul 10, 08:56PM