DFS: Add extra debugging messages
This might help someone realize why their hostapd config isn't working properly. Signed-off-by: Ben Greear <greearb@candelatech.com>
This commit is contained in:
parent
5d0d72a3e5
commit
7450c1287d
1 changed files with 13 additions and 2 deletions
15
src/ap/dfs.c
15
src/ap/dfs.c
|
@ -288,8 +288,19 @@ static int dfs_get_start_chan_idx(struct hostapd_iface *iface)
|
|||
}
|
||||
}
|
||||
|
||||
if (res == -1)
|
||||
wpa_printf(MSG_DEBUG, "DFS chan_idx seems wrong: -1");
|
||||
if (res == -1) {
|
||||
wpa_printf(MSG_DEBUG,
|
||||
"DFS chan_idx seems wrong; num-ch: %d ch-no: %d conf-ch-no: %d 11n: %d sec-ch: %d vht-oper-width: %d",
|
||||
mode->num_channels, channel_no, iface->conf->channel,
|
||||
iface->conf->ieee80211n,
|
||||
iface->conf->secondary_channel,
|
||||
iface->conf->vht_oper_chwidth);
|
||||
|
||||
for (i = 0; i < mode->num_channels; i++) {
|
||||
wpa_printf(MSG_DEBUG, "Available channel: %d",
|
||||
mode->channels[i].chan);
|
||||
}
|
||||
}
|
||||
|
||||
return res;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue