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