mesh: Allow 160 MHz channel to be configured
This allows minimal testing with 160 MHz channel with country code ZA that happens to be the only one with a non-DFS 160 MHz frequency. DFS with mesh is not yet supported. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
92a515b869
commit
331f07742f
1 changed files with 10 additions and 0 deletions
|
@ -2039,6 +2039,16 @@ void ibss_mesh_setup_freq(struct wpa_supplicant *wpa_s,
|
||||||
if (chwidth == VHT_CHANWIDTH_80P80MHZ)
|
if (chwidth == VHT_CHANWIDTH_80P80MHZ)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
} else if (ssid->max_oper_chwidth == VHT_CHANWIDTH_160MHZ) {
|
||||||
|
if (freq->freq == 5180) {
|
||||||
|
chwidth = VHT_CHANWIDTH_160MHZ;
|
||||||
|
vht_caps |= VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
|
||||||
|
seg0 = 50;
|
||||||
|
} else if (freq->freq == 5520) {
|
||||||
|
chwidth = VHT_CHANWIDTH_160MHZ;
|
||||||
|
vht_caps |= VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
|
||||||
|
seg0 = 114;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (hostapd_set_freq_params(&vht_freq, mode->mode, freq->freq,
|
if (hostapd_set_freq_params(&vht_freq, mode->mode, freq->freq,
|
||||||
|
|
Loading…
Reference in a new issue