Rewrite much of the GM ticket system

* Extract storage and manipulation of tickets to TicketMgr (from ObjectMgr)
* Extract ticket commands to TicketCommands.cpp
* Adds support for sending GM responses and GM surveys.
* Fix structure of several ticket-related packets.
* Add support for understanding lag reports.
* Thanks Zor for some of the packet structures, and Cyrax for some sniffs
* Please report any issues encountered via the tracker.

--HG--
branch : trunk
This commit is contained in:
silinoron
2010-08-29 20:28:14 -07:00
parent 1f9936399c
commit 08205afcc9
23 changed files with 1311 additions and 624 deletions

View File

@@ -907,7 +907,7 @@ bool AuthSocket::_HandleXferResume()
uint64 start;
socket().recv_skip(1);
socket().recv((char*)&start,sizeof(start));
fseek(pPatch, start, 0);
fseek(pPatch, long(start), 0);
ACE_Based::Thread u(new PatcherRunnable(this));
return true;