Home | History | Annotate | Download | only in eap_server

Lines Matching defs:eap

2  * hostapd / EAP-Identity
70 wpa_printf(MSG_ERROR, "EAP-Identity: Failed to allocate "
91 wpa_printf(MSG_INFO, "EAP-Identity: Invalid frame");
109 wpa_printf(MSG_DEBUG, "EAP-Identity: failed to pick "
122 wpa_hexdump_ascii(MSG_DEBUG, "EAP-Identity: Peer identity", pos, len);
126 eap_log_msg(sm, "EAP-Response/Identity '%s'", buf);
159 struct eap_method *eap;
162 eap = eap_server_method_alloc(EAP_SERVER_METHOD_INTERFACE_VERSION,
165 if (eap == NULL)
168 eap->init = eap_identity_init;
169 eap->initPickUp = eap_identity_initPickUp;
170 eap->reset = eap_identity_reset;
171 eap->buildReq = eap_identity_buildReq;
172 eap->check = eap_identity_check;
173 eap->process = eap_identity_process;
174 eap->isDone = eap_identity_isDone;
175 eap->isSuccess = eap_identity_isSuccess;
177 ret = eap_server_method_register(eap);
179 eap_server_method_free(eap);