// wwan.h
typedef struct _WWAN_AUTH_CHALLENGE {
WWAN_AUTH_METHOD AuthMethod;
union {
WWAN_AUTH_SIM_CHALLENGE AuthSim;
WWAN_AUTH_AKA_CHALLENGE AuthAka;
WWAN_AUTH_AKAP_CHALLENGE AuthAkap;
} u;
} WWAN_AUTH_CHALLENGE, *PWWAN_AUTH_CHALLENGE;
View the official Windows Driver Kit DDI referenceNo description available.
The WWAN_AUTH_CHALLENGE structure represents an authentication challenge for a specific method.
AuthMethodThe authentication challenge method.
uThe container union for the different authentication challenge methods.
u.AuthSimThe challenge that uses the SIM authentication method. If AuthMethod is set to WwanAuthSim, use this member.
u.AuthAkaThe challenge that uses the AKA authentication method. If AuthMethod is set to WwanAuthAka, use this member.
u.AuthAkapThe challenge that uses the AKA' authentication method. If AuthMethod is set to WwanAuthAkap, use this member.