Home | History | Annotate | Download | only in eap_server

Lines Matching refs:eap

2  * hostapd / Test method for vendor specific (expanded) EAP type
44 wpa_printf(MSG_DEBUG, "EAP-VENDOR-TEST: %s -> %s",
80 wpa_printf(MSG_ERROR, "EAP-VENDOR-TEST: Failed to allocate "
99 wpa_printf(MSG_INFO, "EAP-VENDOR-TEST: Invalid frame");
170 struct eap_method *eap;
173 eap = eap_server_method_alloc(EAP_SERVER_METHOD_INTERFACE_VERSION,
176 if (eap == NULL)
179 eap->init = eap_vendor_test_init;
180 eap->reset = eap_vendor_test_reset;
181 eap->buildReq = eap_vendor_test_buildReq;
182 eap->check = eap_vendor_test_check;
183 eap->process = eap_vendor_test_process;
184 eap->isDone = eap_vendor_test_isDone;
185 eap->getKey = eap_vendor_test_getKey;
186 eap->isSuccess = eap_vendor_test_isSuccess;
188 ret = eap_server_method_register(eap);
190 eap_server_method_free(eap);