Home | History | Annotate | Download | only in eap_peer

Lines Matching defs:eap

2  * EAP peer method: EAP-GTC (RFC 3748)
29 wpa_printf(MSG_DEBUG, "EAP-GTC: EAP-FAST tunnel - use prefix "
62 wpa_hexdump_ascii(MSG_MSGDUMP, "EAP-GTC: Request message", pos, len);
65 wpa_printf(MSG_DEBUG, "EAP-GTC: Challenge did not start with "
70 * error case which seems to use EAP-MSCHAPv2 like error
71 * reporting with EAP-GTC inside EAP-FAST tunnel. */
86 wpa_printf(MSG_INFO, "EAP-GTC: Password not configured");
114 wpa_hexdump_ascii_key(MSG_MSGDUMP, "EAP-GTC: Response",
119 wpa_printf(MSG_DEBUG, "EAP-GTC: Forgetting used password");
129 struct eap_method *eap;
132 eap = eap_peer_method_alloc(EAP_PEER_METHOD_INTERFACE_VERSION,
134 if (eap == NULL)
137 eap->init = eap_gtc_init;
138 eap->deinit = eap_gtc_deinit;
139 eap->process = eap_gtc_process;
141 ret = eap_peer_method_register(eap);
143 eap_peer_method_free(eap);