Home | History | Annotate | Download | only in wpa_supplicant

Lines Matching defs:eap

2  * EAP peer method: Test method for vendor specific (expanded) EAP type
14 * This file implements a vendor specific test method using EAP expanded types.
61 wpa_printf(MSG_DEBUG, "EAP-VENDOR-TEST: Ready to re-process pending "
88 wpa_printf(MSG_DEBUG, "EAP-VENDOR-TEST: Unexpected message "
95 wpa_printf(MSG_DEBUG, "EAP-VENDOR-TEST: Unexpected message "
102 wpa_printf(MSG_DEBUG, "EAP-VENDOR-TEST: Unexpected message "
112 wpa_printf(MSG_DEBUG, "EAP-VENDOR-TEST: Testing "
125 wpa_printf(MSG_DEBUG, "EAP-VENDOR-TEST: Generating Response");
179 struct eap_method *eap;
182 eap = eap_peer_method_alloc(EAP_PEER_METHOD_INTERFACE_VERSION,
185 if (eap == NULL)
188 eap->init = eap_vendor_test_init;
189 eap->deinit = eap_vendor_test_deinit;
190 eap->process = eap_vendor_test_process;
191 eap->isKeyAvailable = eap_vendor_test_isKeyAvailable;
192 eap->getKey = eap_vendor_test_getKey;
194 ret = eap_peer_method_register(eap);
196 eap_peer_method_free(eap);