Home | History | Annotate | Download | only in ap

Lines Matching refs:eid

63 static u8 * hostapd_eid_ds_params(struct hostapd_data *hapd, u8 *eid)
65 *eid++ = WLAN_EID_DS_PARAMS;
66 *eid++ = 1;
67 *eid++ = hapd->iconf->channel;
68 return eid;
72 static u8 * hostapd_eid_erp_info(struct hostapd_data *hapd, u8 *eid)
76 return eid;
88 *eid++ = WLAN_EID_ERP_INFO;
89 *eid++ = 1;
90 *eid++ = ieee802_11_erp_info(hapd);
92 return eid;
114 static u8 * hostapd_eid_country(struct hostapd_data *hapd, u8 *eid,
117 u8 *pos = eid;
118 u8 *end = eid + max_len;
126 return eid;
164 if ((pos - eid) & 1) {
166 return eid;
170 eid[1] = (pos - eid) - 2;
176 static u8 * hostapd_eid_wpa(struct hostapd_data *hapd, u8 *eid, size_t len)
183 return eid;
185 os_memcpy(eid, ie, ielen);
186 return eid + ielen;