WWAN_AUTH_RESPONSE - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-wwan-_wwan_auth_response)

_WWAN_AUTH_RESPONSE structure

Description

The WWAN_AUTH_RESPONSE structure represents an authentication challenge 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.

See also

NDIS_WWAN_AUTH_RESPONSE

WWAN_AUTH_AKAP_RESPONSE

WWAN_AUTH_AKA_RESPONSE

WWAN_AUTH_METHOD

WWAN_AUTH_SIM_RESPONSE