Hello all,
Im all do like in this thread
http://coderx.ru/showthread.php?t=11604
all work fine, i get packets from server, but how send it back?
example here:
Цитата:
int __fastcall new_AddNetworkQueue(unsigned int This, unsigned int EDX, TNetworkPacket *NetworkPacket)
{
if (NetworkPacket->subid == 0xFFFF)
{
switch (NetworkPacket->id)
{
case 0x2E:
decodeKey(NetworkPacket->data + 1);
break;
case 0x74:
// reply ?
Logger("Get from server.");
break;
default:
Logger("Get from server other");
break;
}
}
return true_AddNetworkQueue(This, EDX, NetworkPacket);
}
|
i want reply to 0x74 packet, how to do it?
Thanks.