Home | History | Annotate | Download | only in eap_peer

Lines Matching defs:eap

2  * EAP peer method: EAP-GTC (RFC 3748)
35 wpa_printf(MSG_DEBUG, "EAP-GTC: EAP-FAST tunnel - use prefix "
68 wpa_hexdump_ascii(MSG_MSGDUMP, "EAP-GTC: Request message", pos, len);
71 wpa_printf(MSG_DEBUG, "EAP-GTC: Challenge did not start with "
76 * error case which seems to use EAP-MSCHAPv2 like error
77 * reporting with EAP-GTC inside EAP-FAST tunnel. */
92 wpa_printf(MSG_INFO, "EAP-GTC: Password not configured");
120 wpa_hexdump_ascii_key(MSG_MSGDUMP, "EAP-GTC: Response",
125 wpa_printf(MSG_DEBUG, "EAP-GTC: Forgetting used password");
135 struct eap_method *eap;
138 eap = eap_peer_method_alloc(EAP_PEER_METHOD_INTERFACE_VERSION,
140 if (eap == NULL)
143 eap->init = eap_gtc_init;
144 eap->deinit = eap_gtc_deinit;
145 eap->process = eap_gtc_process;
147 ret = eap_peer_method_register(eap);
149 eap_peer_method_free(eap);