Home | History | Annotate | Download | only in eap_peer

Lines Matching refs:eapRespData

315 	wpabuf_free(sm->eapRespData);
316 sm->eapRespData = NULL;
317 sm->eapRespData = eap_sm_buildNak(sm, sm->reqId);
340 * eapRespData. RFC 4137 uses three separate method procedure (check,
350 * eapRespData = m.buildResp(reqId)
357 wpabuf_free(sm->eapRespData);
358 sm->eapRespData = NULL;
359 sm->eapRespData = sm->m->process(sm, sm->eap_method_priv, &ret,
391 if (sm->eapRespData) {
395 sm->lastRespData = wpabuf_dup(sm->eapRespData);
426 wpabuf_free(sm->eapRespData);
427 sm->eapRespData = NULL;
428 sm->eapRespData = eap_sm_buildIdentity(sm, sm->reqId, 0);
442 wpabuf_free(sm->eapRespData);
443 sm->eapRespData = NULL;
444 sm->eapRespData = eap_sm_buildNotify(sm->reqId);
454 wpabuf_free(sm->eapRespData);
456 sm->eapRespData = wpabuf_dup(sm->lastRespData);
458 sm->eapRespData = NULL;
1308 wpabuf_free(sm->eapRespData);
1309 sm->eapRespData = NULL;
2013 * Returns: Pointer to the EAP response (eapRespData) or %NULL on failure
2015 * Fetch EAP response (eapRespData) from the EAP state machine. This data is
2024 if (sm == NULL || sm->eapRespData == NULL)
2027 resp = sm->eapRespData;
2028 sm->eapRespData = NULL;