mirror of
https://github.com/berlin-open-wireless-lab/DAWN.git
synced 2025-03-09 15:40:12 +00:00
Parse ht and vht information in probe
This commit is contained in:
parent
e9daee896c
commit
f8c2b60249
3 changed files with 22 additions and 15 deletions
|
|
@ -661,8 +661,8 @@ void print_probe_entry(probe_entry entry) {
|
|||
|
||||
printf(
|
||||
"bssid_addr: %s, client_addr: %s, target_addr: %s, signal: %d, freq: "
|
||||
"%d, counter: %d\n",
|
||||
mac_buf_ap, mac_buf_client, mac_buf_target, entry.signal, entry.freq,
|
||||
"%d, ht: %d, vht: %d, counter: %d\n",
|
||||
mac_buf_ap, mac_buf_client, mac_buf_target, entry.signal, entry.freq, entry.ht_support, entry.vht_support,
|
||||
entry.counter);
|
||||
}
|
||||
|
||||
|
|
@ -679,7 +679,7 @@ void print_client_entry(client entry) {
|
|||
|
||||
void print_client_array() {
|
||||
printf("--------Clients------\n");
|
||||
printf("Probe Entry Last: %d\n", client_entry_last);
|
||||
printf("Client Entry Last: %d\n", client_entry_last);
|
||||
for(int i = 0; i <= client_entry_last; i++)
|
||||
{
|
||||
print_client_entry(client_array[i]);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue