Home | History | Annotate | Download | only in eap_peer

Lines Matching defs:eap

2  * EAP peer method: EAP-OTP (RFC 3748)
42 wpa_hexdump_ascii(MSG_MSGDUMP, "EAP-OTP: Request message",
54 wpa_printf(MSG_INFO, "EAP-OTP: Password not configured");
71 wpa_hexdump_ascii_key(MSG_MSGDUMP, "EAP-OTP: Response",
75 wpa_printf(MSG_DEBUG, "EAP-OTP: Forgetting used password");
85 struct eap_method *eap;
88 eap = eap_peer_method_alloc(EAP_PEER_METHOD_INTERFACE_VERSION,
90 if (eap == NULL)
93 eap->init = eap_otp_init;
94 eap->deinit = eap_otp_deinit;
95 eap->process = eap_otp_process;
97 ret = eap_peer_method_register(eap);
99 eap_peer_method_free(eap);