I don't have the source now and I try to rember how I did it ..
PHP Code:
BYTE Pack[7] =
{
0x01, 0x00, // Packet length
0x4F, 0x70, // Opcode
0x00, 0x00, // Direction to send it
0x04 // Packet data
};
PHP Code:
send(Socket, (char*)Pack, 7, 0);
PHP Code:
send(Socket, (char*)&Pack, 7, 0);






