yeah had this too, seems it has something to do with the blizzard updater , doensnt bother my players though, it keeps on going, only frustrating is the sometimes long list of unknown CMD 19, i edited the authsocket code to see from where the commands came from, warning with this U will receive ALL Ips even when players login..
Code:
void AuthSocket::OnRead()
{
if(GetReadBufferSize() < 1)
return;
uint8 Command = GetReadBuffer(0)[0];
last_recv = UNIXTIME;
if(Command < MAX_AUTH_CMD && Handlers[Command] != NULL)
(this->*Handlers[Command])();
else
Log.Notice("AuthSocket", "Unknown cmd %u", Command);
Log.Notice("AuthSocket", "ITS COMING from %s",GetRemoteIP().c_str());
}
I added the red part (line 487 in my trunk\src\ascent-logonserver) Ascent rev4225
Like I said No problems here for players not able to login when it starts spaming CMD 19, i installed Wow on another Pc in my Lan and immediatly the console starts spamming when i started "updating" the client with the new Partial 2.4 patch)