Home | History | Annotate | Download | only in wpa_supplicant

Lines Matching full:resp

71 	struct eap_hdr *resp;
118 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_LEAP, respDataLen,
121 if (resp == NULL)
135 return (u8 *) resp;
145 struct eap_hdr *resp;
165 resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_LEAP, respDataLen,
168 if (resp == NULL)
176 os_free(resp);
188 return (u8 *) resp;
197 const struct eap_hdr *resp;
209 resp = (const struct eap_hdr *) reqData;
210 pos = (const u8 *) (resp + 1);
211 if (reqDataLen < sizeof(*resp) + 4 || *pos != EAP_TYPE_LEAP) {
230 response_len > reqDataLen - sizeof(*resp) - 4) {