Home | History | Annotate | Download | only in ap

Lines Matching refs:eid

23 				     struct sta_info *sta, u8 *eid)
25 u8 *pos = eid;
209 u8 * hostapd_eid_ext_capab(struct hostapd_data *hapd, u8 *eid)
211 u8 *pos = eid;
229 return eid;
242 while (len > 0 && eid[1 + len] == 0) {
244 eid[1] = len;
247 return eid;
249 return eid + 2 + len;
253 u8 * hostapd_eid_interworking(struct hostapd_data *hapd, u8 *eid)
255 u8 *pos = eid;
260 return eid;
293 u8 * hostapd_eid_adv_proto(struct hostapd_data *hapd, u8 *eid)
295 u8 *pos = eid;
300 return eid;
312 u8 * hostapd_eid_roaming_consortium(struct hostapd_data *hapd, u8 *eid)
314 u8 *pos = eid;
322 return eid;
359 u8 * hostapd_eid_time_adv(struct hostapd_data *hapd, u8 *eid)
362 return eid;
366 return eid;
369 return eid;
371 os_memcpy(eid, wpabuf_head(hapd->time_adv),
373 eid += wpabuf_len(hapd->time_adv);
375 return eid;
379 u8 * hostapd_eid_time_zone(struct hostapd_data *hapd, u8 *eid)
384 return eid;
388 *eid++ = WLAN_EID_TIME_ZONE;
389 *eid++ = len;
390 os_memcpy(eid, hapd->conf->time_zone, len);
391 eid += len;
393 return eid;
450 u8 * hostapd_eid_bss_max_idle_period(struct hostapd_data *hapd, u8 *eid)
452 u8 *pos = eid;