diff options
author | Jouni Malinen <j@w1.fi> | 2013-10-19 14:32:05 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2013-10-20 10:12:04 (GMT) |
commit | a5d44ac0839358f25c4586de58b4125a21e2c7b6 (patch) | |
tree | c42e3878a445fd6fd0eabcba7a31642b8eb70707 /wpa_supplicant/interworking.c | |
parent | 7e8bc7d6fb322d7b3d37211462bf956edc910537 (diff) | |
download | hostap-a5d44ac0839358f25c4586de58b4125a21e2c7b6.zip hostap-a5d44ac0839358f25c4586de58b4125a21e2c7b6.tar.gz hostap-a5d44ac0839358f25c4586de58b4125a21e2c7b6.tar.bz2 |
EAP peer: Add framework for external SIM/USIM processing
The new configuration parameter external_sim=<0/1> can now be used to
configure wpa_supplicant to use external SIM/USIM processing (e.g., GSM
authentication for EAP-SIM or UMTS authentication for EAP-AKA). The
requests and responses for such operations are sent over the ctrl_iface
CTRL-REQ-SIM and CTRL-RSP-SIM commands similarly to the existing
password query mechanism.
Changes to the EAP methods to use this new mechanism will be added in
separate commits.
Signed-hostap: Jouni Malinen <j@w1.fi>
Diffstat (limited to 'wpa_supplicant/interworking.c')
-rw-r--r-- | wpa_supplicant/interworking.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/wpa_supplicant/interworking.c b/wpa_supplicant/interworking.c index 666e786..ec3d6ce 100644 --- a/wpa_supplicant/interworking.c +++ b/wpa_supplicant/interworking.c @@ -1407,7 +1407,8 @@ static struct wpa_cred * interworking_credentials_available_3gpp( #endif /* CONFIG_EAP_PROXY */ if (cred->imsi == NULL || !cred->imsi[0] || - cred->milenage == NULL || !cred->milenage[0]) + (!wpa_s->conf->external_sim && + (cred->milenage == NULL || !cred->milenage[0]))) continue; sep = os_strchr(cred->imsi, '-'); |