Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Wi-Fi Hotspot Offloading deprecation note
Important
Starting in Windows 10, version 1709, the Wi-Fi Hotspot Offloading feature is deprecated and should not be used. Instead, we recommend writing a UWP app and using the Wi-Fi Hotspot Authentication API (Windows.Networking.NetworkOperators).
For a code sample and more info, see the Wi-Fi hotspot authentication sample.
The HS_SIM_IDENTITY structure contains SIM identification information required for EAP-SIM or EAP-AKA authentication.
Syntax
typedef struct _HS_SIM_IDENTITY {
eHS_SIM_TYPE SimType;
DWORD dwMNC;
DWORD dwMCC;
DWORD dwNID;
DWORD dwSID;
DWORD dwEapMethods;
} HS_SIM_IDENTITY, *PHS_SIM_IDENTITY;
Members
SimType
The type of SIM, whether GSM or CDMA, or none. If the network is GSM, the dwMNC and dwMCC pair of fields will be defined, whereas for CDMA the dwSID and dwNID pair of fields must be defined.
dwMNC
Used if the SIM is GSM type.
The mobile network code (MNC) of the GSM network.
dwMCC
Used if the SIM is GSM type.
The mobile country code (MCC) of the GSM network.
dwNID
Used if the SIM is CDMA type.
The Network Identification Number (NID) of the CDMA network.
dwSID
Used if the SIM is CDMA type.
The System Identification Number (SID) of the CDMA network.
dwEapMethods
The EAP authentication method.
Requirements
Header |
Hotspotoffloadplugin.h (include Hotspotoffloadplugin.h) |