Home | History | Annotate | Download | only in eap_server

Lines Matching refs:eap

2  * EAP-IKEv2 server (RFC 5106)
37 wpa_printf(MSG_DEBUG, "EAP-IKEV2: No IDr received - default "
38 "to user identity from EAP-Identity");
45 wpa_printf(MSG_DEBUG, "EAP-IKEV2: No user entry found");
75 wpa_printf(MSG_DEBUG, "EAP-IKEV2: %s -> %s",
94 data->ikev2.key_pad = (u8 *) os_strdup("Key Pad for EAP-IKEv2");
140 wpa_printf(MSG_DEBUG, "EAP-IKEV2: Generating Request");
158 wpa_printf(MSG_DEBUG, "EAP-IKEV2: Add Integrity Checksum "
163 wpa_printf(MSG_DEBUG, "EAP-IKEV2: Unknown INTEG "
194 wpa_printf(MSG_DEBUG, "EAP-IKEV2: Sending out %lu bytes "
201 wpa_printf(MSG_DEBUG, "EAP-IKEV2: Sending out %lu bytes "
221 wpa_printf(MSG_DEBUG, "EAP-IKEV2: Failed to "
233 wpa_printf(MSG_DEBUG, "EAP-IKEV2: Unexpected state %d in "
249 wpa_printf(MSG_INFO, "EAP-IKEV2: Invalid frame");
271 wpa_printf(MSG_INFO, "EAP-IKEV2: The message should have "
285 wpa_printf(MSG_DEBUG, "EAP-IKEV2: Fragment overflow");
291 wpa_printf(MSG_DEBUG, "EAP-IKEV2: Received %lu bytes, waiting for %lu "
305 wpa_printf(MSG_DEBUG, "EAP-IKEV2: No Message Length field in "
314 wpa_printf(MSG_DEBUG, "EAP-IKEV2: No memory for "
319 wpa_printf(MSG_DEBUG, "EAP-IKEV2: Received %lu bytes in first "
336 wpa_printf(MSG_DEBUG, "EAP-IKEV2: Failed to derive "
378 wpa_printf(MSG_DEBUG, "EAP-IKEV2: Message underflow");
386 wpa_printf(MSG_DEBUG, "EAP-IKEV2: Invalid Message "
393 wpa_printf(MSG_DEBUG, "EAP-IKEV2: Received packet: Flags 0x%x "
398 wpa_printf(MSG_DEBUG, "EAP-IKEV2: Unexpected payload "
403 wpa_printf(MSG_DEBUG, "EAP-IKEV2: Fragment acknowledged");
421 wpa_printf(MSG_DEBUG, "EAP-TNC: All fragments received");
447 wpa_printf(MSG_DEBUG, "EAP-IKEV2: Authentication completed "
516 struct eap_method *eap;
519 eap = eap_server_method_alloc(EAP_SERVER_METHOD_INTERFACE_VERSION,
522 if (eap == NULL)
525 eap->init = eap_ikev2_init;
526 eap->reset = eap_ikev2_reset;
527 eap->buildReq = eap_ikev2_buildReq;
528 eap->check = eap_ikev2_check;
529 eap->process = eap_ikev2_process;
530 eap->isDone = eap_ikev2_isDone;
531 eap->getKey = eap_ikev2_getKey;
532 eap->isSuccess = eap_ikev2_isSuccess;
533 eap->get_emsk = eap_ikev2_get_emsk;
535 ret = eap_server_method_register(eap);
537 eap_server_method_free(eap);