// wwan.h
typedef enum _WWAN_AUTH_PROTOCOL {
WwanAuthProtocolNone,
WwanAuthProtocolPap,
WwanAuthProtocolChap,
WwanAuthProtocolMsChapV2,
WwanAuthProtocolAuto,
WwanAuthProtocolMax
} WWAN_AUTH_PROTOCOL, *PWWAN_AUTH_PROTOCOL;
View the official Windows Driver Kit DDI referenceNo description available.
The WWAN_AUTH_PROTOCOL enumeration lists the different types of authentication protocols that are supported by the MB device.
WwanAuthProtocolNoneNo authentication protocol.
WwanAuthProtocolPapUnencrypted password authentication.
WwanAuthProtocolChapUse the Challenge Handshake Authentication Protocol (CHAP).
WwanAuthProtocolMsChapV2Use the Microsoft Challenge Handshake Authentication Protocol (CHAP) v2.0.
WwanAuthProtocolAutoWwanAuthProtocolMaxThe total number of supported authentication protocols.
This enumeration applies only to GSM devices. The MB Service specifies WwanAuthProtocolNone as the authentication type for CDMA-based devices.