Mark IE input to hostapd_eid_wmm_valid() const
This commit is contained in:
parent
2a3c6f5077
commit
9294bfefc7
2 changed files with 3 additions and 2 deletions
|
@ -92,7 +92,7 @@ u8 * hostapd_eid_wmm(struct hostapd_data *hapd, u8 *eid)
|
||||||
/* This function is called when a station sends an association request with
|
/* This function is called when a station sends an association request with
|
||||||
* WMM info element. The function returns zero on success or non-zero on any
|
* WMM info element. The function returns zero on success or non-zero on any
|
||||||
* error in WMM element. eid does not include Element ID and Length octets. */
|
* error in WMM element. eid does not include Element ID and Length octets. */
|
||||||
int hostapd_eid_wmm_valid(struct hostapd_data *hapd, u8 *eid, size_t len)
|
int hostapd_eid_wmm_valid(struct hostapd_data *hapd, const u8 *eid, size_t len)
|
||||||
{
|
{
|
||||||
struct wmm_information_element *wmm;
|
struct wmm_information_element *wmm;
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,8 @@
|
||||||
struct ieee80211_mgmt;
|
struct ieee80211_mgmt;
|
||||||
|
|
||||||
u8 * hostapd_eid_wmm(struct hostapd_data *hapd, u8 *eid);
|
u8 * hostapd_eid_wmm(struct hostapd_data *hapd, u8 *eid);
|
||||||
int hostapd_eid_wmm_valid(struct hostapd_data *hapd, u8 *eid, size_t len);
|
int hostapd_eid_wmm_valid(struct hostapd_data *hapd, const u8 *eid,
|
||||||
|
size_t len);
|
||||||
#ifdef NEED_AP_MLME
|
#ifdef NEED_AP_MLME
|
||||||
int hostapd_wmm_sta_config(struct hostapd_data *hapd, struct sta_info *sta);
|
int hostapd_wmm_sta_config(struct hostapd_data *hapd, struct sta_info *sta);
|
||||||
#else /* NEED_AP_MLME */
|
#else /* NEED_AP_MLME */
|
||||||
|
|
Loading…
Reference in a new issue