EAP-FAST: Added support for disabling anonymous/authenticated provisioning

eap_fast_prov config parameter can now be used to enable/disable different
EAP-FAST provisioning modes:
0 = provisioning disabled
1 = only anonymous provisioning allowed
2 = only authenticated provisioning allowed
3 = both provisioning modes allowed
This commit is contained in:
Jouni Malinen 2008-10-08 16:55:23 +03:00 committed by Jouni Malinen
parent f36f51e403
commit 378eae5e9b
13 changed files with 50 additions and 0 deletions

View file

@ -172,6 +172,9 @@ struct eap_sm {
u8 *pac_opaque_encr_key;
char *eap_fast_a_id;
enum {
NO_PROV, ANON_PROV, AUTH_PROV, BOTH_PROV
} eap_fast_prov;
int eap_sim_aka_result_ind;
int tnc;
};