Quote:
Originally Posted by katze123
you need the other send function in the engine. the place you're sniffing atm at is the wrong place and you wont have success...
|
hmm ok i got it to work
btw i sniffed at correct place just i need to chage read metod.
case 'm':
{
char *sPtr = va_arg(va, char *);
int size = va_arg(va, int);
memcpy(sniffBuffer, sPtr, size);
printf("the size is : %d\n", size);
for(byte c=0; c< size; c++)
printf("%0.2x ",sniffBuffer[c]);
printf("\n");
testSkill = false;
}
most important is that you need to remember about big-endian / little -endian swap on this data
thx and gl all.
Can be closed.