[HELP] reclocating a buffer
Hello im a little stumped on how i can relocate a buffer once its been signed...
Code:
// defined variables
#define int recvd;
#define unsigned Size;
#define unsigned char* Buffer;
#define MAX_RECEIVEPACKETLENGTH 0x4000
recvd = recv( sckSocket, (char*)Buffer, MAX_RECEIVEPACKETLENGTH , 0 );
Size = recvd;
unsigned short header = GetWord( 0 );
how could i go about being able to take way the header inside the buffer... (two bytes)
IF so example please....
what im trying to do is recv the entire buffer then minus the header....