HomeSort by: relevance | last modified time | path
    Searched defs:wmm (Results 1 - 6 of 6) sorted by relevancy

  /src/external/bsd/wpa/dist/src/ap/
wmm.c 2 * hostapd / WMM (Wi-Fi Multimedia)
21 #include "wmm.h"
44 struct hostapd_wmm_ac_params *wmm,
50 wmm[ac].cwmin = MAX(wmm_conf[ac].cwmin, wmm_reg[ac].min_cwmin);
51 wmm[ac].cwmax = MAX(wmm_conf[ac].cwmax, wmm_reg[ac].min_cwmax);
52 wmm[ac].aifs = MAX(wmm_conf[ac].aifs, wmm_reg[ac].min_aifs);
53 wmm[ac].txop_limit =
55 wmm[ac].admission_control_mandatory =
62 * Calculate WMM regulatory limit if any.
99 * Add WMM Parameter Element to Beacon, Probe Response, and (Re)Associatio
105 struct wmm_parameter_element *wmm = local
156 struct wmm_information_element *wmm; local
    [all...]
ieee802_11.c 41 #include "wmm.h"
3460 struct wmm_information_element *wmm; local
3466 "invalid WMM element in association "
3472 wmm = (struct wmm_information_element *) wmm_ie;
3473 sta->qosinfo = wmm->qos_info;
3934 resp = check_wmm(hapd, sta, elems->wmm, elems->wmm_len);
  /src/external/bsd/wpa/dist/src/common/
ieee802_11_common.h 50 const u8 *wmm; /* WMM Information or Parameter Element */ member in struct:ieee802_11_elems
127 u8 wmm_len; /* 7 = WMM Information; 24 = WMM Parameter */
wpa_common.h 707 const u8 *wmm; member in struct:wpa_eapol_ie_parse
  /src/external/bsd/wpa/dist/src/rsn_supp/
tdls.c 1832 struct wmm_information_element *wmm; local
1834 if (!kde->wmm) {
1835 wpa_printf(MSG_DEBUG, "TDLS: No supported WMM capabilities received");
1840 wpa_printf(MSG_DEBUG, "TDLS: Invalid supported WMM capabilities received");
1844 wmm = (struct wmm_information_element *) kde->wmm;
1845 peer->qos_info = wmm->qos_info;
1849 wpa_printf(MSG_DEBUG, "TDLS: Peer WMM QOS Info 0x%x", peer->qos_info);
2078 /* Overwrite with the qos_info obtained in WMM IE */
2496 /* Overwrite with the qos_info obtained in WMM IE *
    [all...]
  /src/external/bsd/wpa/dist/wpa_supplicant/
wpa_supplicant.c 1699 bool wmm; local
2103 /* Mark WMM enabled for any HT/VHT/HE/EHT association to get more
2106 * in practice all cases using WMM support at least eight replay
2110 * In addition, claim WMM to be enabled if the AP supports it since it
2111 * is far more likely for any current device to support WMM. */
2112 wmm = wpa_s->connection_set &&
2115 if (!wmm && bss)
2116 wmm = !!wpa_bss_get_vendor_ie(bss, WMM_IE_VENDOR_TYPE);
2117 wpa_sm_set_param(wpa_s->wpa, WPA_PARAM_WMM_ENABLED, wmm);

Completed in 41 milliseconds