mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 08:48:31 -05:00
bsd: Set level correctly for non FreeBSD systems
Only FreeBSD treats rssi as dBm, other BSD have no special meaning to rssi. Signed-off-by: Roy Marples <roy@marples.name>
This commit is contained in:
parent
51269b386a
commit
18ae3a675c
@ -1376,11 +1376,16 @@ wpa_driver_bsd_add_scan_entry(struct wpa_scan_results *res,
|
||||
result->caps = sr->isr_capinfo;
|
||||
result->qual = sr->isr_rssi;
|
||||
result->noise = sr->isr_noise;
|
||||
|
||||
#ifdef __FreeBSD__
|
||||
/*
|
||||
* the rssi value reported by the kernel is in 0.5dB steps relative to
|
||||
* the reported noise floor. see ieee80211_node.h for details.
|
||||
*/
|
||||
result->level = sr->isr_rssi / 2 + sr->isr_noise;
|
||||
#else
|
||||
result->level = sr->isr_rssi;
|
||||
#endif
|
||||
|
||||
pos = (u8 *)(result + 1);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user