mirror of
https://github.com/berlin-open-wireless-lab/DAWN.git
synced 2025-03-09 15:40:12 +00:00
New freq sorting
This commit is contained in:
commit
4bb93b6459
1 changed files with 3 additions and 3 deletions
|
@ -68,9 +68,9 @@ int go_next_help(char sort_order[], int i, probe_entry entry,
|
||||||
// frequency
|
// frequency
|
||||||
// mac is 5 ghz or 2.4 ghz?
|
// mac is 5 ghz or 2.4 ghz?
|
||||||
case 'f':
|
case 'f':
|
||||||
return entry.freq < next_entry.freq &&
|
return //entry.freq < next_entry.freq &&
|
||||||
entry.freq >= 5000 &&
|
entry.freq < 5000 &&
|
||||||
next_entry.freq <= 5000 &&
|
next_entry.freq >= 5000 &&
|
||||||
//entry.freq < 5 &&
|
//entry.freq < 5 &&
|
||||||
mac_is_equal(entry.client_addr, next_entry.client_addr);
|
mac_is_equal(entry.client_addr, next_entry.client_addr);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue