Condividi tramite


struttura WWAN_AUTH_CHALLENGE (wwan.h)

La struttura WWAN_AUTH_CHALLENGE rappresenta una richiesta 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;

Membri

AuthMethod

Metodo di verifica dell'autenticazione.

u

Unione dei contenitori per i diversi metodi di verifica dell'autenticazione.

u.AuthSim

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

u.AuthAka

La richiesta di verifica 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 AKA. Se AuthMethod è impostato su WwanAuthAkap, usare questo membro.

Fabbisogno

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

Vedere anche

WWAN_AUTH_AKAP_CHALLENGE

WWAN_AUTH_AKA_CHALLENGE

WWAN_AUTH_METHOD

WWAN_AUTH_SIM_CHALLENGE