Lines Matching full:retry
408 int retry = 1; in eap_mschapv2_failure_txt() local
429 retry = atoi(pos); in eap_mschapv2_failure_txt()
430 wpa_printf(MSG_DEBUG, "EAP-MSCHAPV2: retry is %sallowed", in eap_mschapv2_failure_txt()
431 retry == 1 ? "" : "not "); in eap_mschapv2_failure_txt()
479 if (data->prev_error == ERROR_AUTHENTICATION_FAILURE && retry && in eap_mschapv2_failure_txt()
483 "EAP-MSCHAPV2: mark password retry disabled based on local configuration"); in eap_mschapv2_failure_txt()
484 retry = 0; in eap_mschapv2_failure_txt()
487 "EAP-MSCHAPV2: failure message: '%s' (retry %sallowed, error " in eap_mschapv2_failure_txt()
489 msg, retry == 1 ? "" : "not ", data->prev_error); in eap_mschapv2_failure_txt()
498 } else if (retry == 1 && config) { in eap_mschapv2_failure_txt()
510 return retry == 1; in eap_mschapv2_failure_txt()
665 int retry = 0; in eap_mschapv2_failure() local
677 retry = eap_mschapv2_failure_txt(sm, data, buf); in eap_mschapv2_failure()
694 } else if (retry && data->prev_error == ERROR_AUTHENTICATION_FAILURE) { in eap_mschapv2_failure()
695 /* TODO: could try to retry authentication, e.g, after having in eap_mschapv2_failure()
763 * again in case retry is allowed after a possible failure. in eap_mschapv2_copy_challenge()