// wwan.h
typedef struct _WWAN_AUTH_RESPONSE {
WWAN_AUTH_METHOD AuthMethod;
union {
WWAN_AUTH_SIM_RESPONSE AuthSim;
WWAN_AUTH_AKA_RESPONSE AuthAka;
WWAN_AUTH_AKAP_RESPONSE AuthAkap;
} u;
} WWAN_AUTH_RESPONSE, *PWWAN_AUTH_RESPONSE;
View the official Windows Driver Kit DDI referenceNo description available.
The WWAN_AUTH_RESPONSE structure represents an authentication challenge response.
AuthMethodThe authentication challenge method used.
uThe container union for the different authentication challenge methods.
u.AuthSimThe response from the SIM authentication method. If AuthMethod is set to WwanAuthSim, use this member.
u.AuthAkaThe response from the AKA authentication method. If AuthMethod is set to WwanAuthAka, use this member.
u.AuthAkapThe response from the AKA' authentication method. If AuthMethod is set to WwanAuthAkap, use this member.
The NDIS_WWAN_AUTH_RESPONSE structure uses this structure.