nl80211: Add IBSS BSSID fixing support
If a BSSID and fixed-bssid are requested, fix the BSSID, so the driver does not attempt to merge. Signed-hostap: Nicolas Cavallari <cavallar@lri.fr>
This commit is contained in:
parent
9e2af29f9b
commit
913e3cf794
1 changed files with 6 additions and 0 deletions
|
@ -6421,6 +6421,12 @@ retry:
|
|||
if (ret)
|
||||
goto nla_put_failure;
|
||||
|
||||
if (params->bssid && params->fixed_bssid) {
|
||||
wpa_printf(MSG_DEBUG, " * BSSID=" MACSTR,
|
||||
MAC2STR(params->bssid));
|
||||
NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, params->bssid);
|
||||
}
|
||||
|
||||
if (params->wpa_ie) {
|
||||
wpa_hexdump(MSG_DEBUG,
|
||||
" * Extra IEs for Beacon/Probe Response frames",
|
||||
|
|
Loading…
Reference in a new issue