WWAN_AUTH_RESPONSE structure (wwan.h)
The WWAN_AUTH_RESPONSE structure represents an authentication challenge response.
Syntax
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;
Members
AuthMethod
The authentication challenge method used.
u
The container union for the different authentication challenge methods.
u.AuthSim
The response from the SIM authentication method. If AuthMethod is set to WwanAuthSim, use this member.
u.AuthAka
The response from the AKA authentication method. If AuthMethod is set to WwanAuthAka, use this member.
u.AuthAkap
The response from the AKA' authentication method. If AuthMethod is set to WwanAuthAkap, use this member.
Remarks
The NDIS_WWAN_AUTH_RESPONSE structure uses this structure.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Supported starting with Windows 8. |
Header | wwan.h (include Wwan.h) |