WWAN_AUTH_CHALLENGE struttura (wwan.h)

La struttura WWAN_AUTH_CHALLENGE rappresenta una sfida di autenticazione per un metodo specifico.

Sintassi

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

Metodo di verifica dell'autenticazione.

u

Unione dei contenitori per i diversi metodi di sfida di autenticazione.

u.AuthSim

La sfida che usa il metodo di autenticazione SIM. Se AuthMethod è impostato su WwanAuthSim, usare questo membro.

u.AuthAka

La sfida che usa il metodo di autenticazione AKA. Se AuthMethod è impostato su WwanAuthAka, usare questo membro.

u.AuthAkap

La sfida che usa il metodo di autenticazione dell'AKA. Se AuthMethod è impostato su WwanAuthAkap, usare questo membro.

Requisiti

Requisito Valore
Client minimo supportato Supportato a partire da Windows 8.
Intestazione wwan.h (include Wwan.h)

Vedi anche

WWAN_AUTH_AKAP_CHALLENGE

WWAN_AUTH_AKA_CHALLENGE

WWAN_AUTH_METHOD

WWAN_AUTH_SIM_CHALLENGE