diff options
author | Jouni Malinen <j@w1.fi> | 2012-09-02 10:04:18 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2012-09-02 10:04:18 (GMT) |
commit | e026159a8e8e38feb0ec455bf7ae09146033016f (patch) | |
tree | 8a3ec51c9548d255f88c98f3a43ef586d8e28031 /src/eapol_supp/eapol_supp_sm.c | |
parent | 50a77557357d0e96b248eaee487d38c51ab36ca1 (diff) | |
download | hostap-e026159a8e8e38feb0ec455bf7ae09146033016f.zip hostap-e026159a8e8e38feb0ec455bf7ae09146033016f.tar.gz hostap-e026159a8e8e38feb0ec455bf7ae09146033016f.tar.bz2 |
EAP-SIM/AKA: Store pseudonym identity in configuration
Use the anonymous_identity field to store EAP-SIM/AKA pseudonym identity
so that this can be maintained between EAP sessions (e.g., after
wpa_supplicant restart) even if fast re-authentication data was cleared.
Signed-hostap: Jouni Malinen <j@w1.fi>
Diffstat (limited to 'src/eapol_supp/eapol_supp_sm.c')
-rw-r--r-- | src/eapol_supp/eapol_supp_sm.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/eapol_supp/eapol_supp_sm.c b/src/eapol_supp/eapol_supp_sm.c index e3bfa38..851cf49 100644 --- a/src/eapol_supp/eapol_supp_sm.c +++ b/src/eapol_supp/eapol_supp_sm.c @@ -1825,6 +1825,15 @@ static void eapol_sm_notify_status(void *ctx, const char *status, } +static void eapol_sm_set_anon_id(void *ctx, const u8 *id, size_t len) +{ + struct eapol_sm *sm = ctx; + + if (sm->ctx->set_anon_id) + sm->ctx->set_anon_id(sm->ctx->ctx, id, len); +} + + static struct eapol_callbacks eapol_cb = { eapol_sm_get_config, @@ -1838,7 +1847,8 @@ static struct eapol_callbacks eapol_cb = eapol_sm_notify_pending, eapol_sm_eap_param_needed, eapol_sm_notify_cert, - eapol_sm_notify_status + eapol_sm_notify_status, + eapol_sm_set_anon_id }; |