Quantcast
Channel: Aircrack-ng forum
Viewing all articles
Browse latest Browse all 6050

Re: Output differs in Target system

$
0
0
Problem solved

In struct ST_INFO the power is a signed int while station mac is an unsigned char array and the array to which I was writing to is also an unsigned char array.

So I did the following,

unsigned char power[2];
power[0]=abs(st_cur->power);
...

Viewing all articles
Browse latest Browse all 6050

Trending Articles