From 2aaa9e184f1cb8782ad3e462191403ec9f4a1ac7 Mon Sep 17 00:00:00 2001 From: PolynomialDivision Date: Sat, 27 Jan 2018 17:31:59 +0100 Subject: [PATCH] print ap entry --- src/storage/datastorage.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/storage/datastorage.c b/src/storage/datastorage.c index 93fb2cf..f7be4b3 100644 --- a/src/storage/datastorage.c +++ b/src/storage/datastorage.c @@ -1475,8 +1475,8 @@ void print_ap_entry(ap entry) { char mac_buf_ap[20]; sprintf(mac_buf_ap, MACSTR, MAC2STR(entry.bssid_addr)); - printf("ssid: %s, bssid_addr: %s, freq: %d, ht: %d, vht: %d, chan_utilz: %d\n", - entry.ssid, mac_buf_ap, entry.freq, entry.ht, entry.vht, entry.channel_utilization); + printf("ssid: %s, bssid_addr: %s, freq: %d, ht: %d, vht: %d, chan_utilz: %d, col_d: %d, bandwidth: %d\n", + entry.ssid, mac_buf_ap, entry.freq, entry.ht, entry.vht, entry.channel_utilization, entry.collision_domain, entry.bandwidth); } void print_ap_array() {