Lines Matching defs:params
3193 struct wpa_driver_ap_params params;
3197 ret = ieee802_11_build_ap_params(hapd, ¶ms);
3208 beacon->head = os_memdup(params.head, params.head_len);
3212 beacon->head_len = params.head_len;
3214 beacon->tail = os_memdup(params.tail, params.tail_len);
3218 beacon->tail_len = params.tail_len;
3220 if (params.proberesp != NULL) {
3221 beacon->probe_resp = os_memdup(params.proberesp,
3222 params.proberesp_len);
3226 beacon->probe_resp_len = params.proberesp_len;
3267 ieee802_11_free_ap_params(¶ms);
3279 struct hostapd_freq_params *params,
3286 if (!params->channel) {
3288 params->channel = hostapd_hw_get_channel(hapd, params->freq);
3291 channel = params->channel;
3312 switch (params->bandwidth) {
3319 if (params->center_freq2)
3332 conf->ieee80211n = params->ht_enabled;
3333 conf->secondary_channel = params->sec_channel_offset;
3334 ieee80211_freq_to_chan(params->center_freq1,
3336 ieee80211_freq_to_chan(params->center_freq2,
3528 * These params will be cleared during interface disable below.