WWAN_SET_PROVISIONED_CONTEXT_V2 structure (wwan.h)

The WWAN_SET_PROVISIONED_CONTEXT_V2 structure represents a provisioned context that is supported by a mobile broadband (MBB) device. This structure is used by the NDIS_WWAN_SET_PROVISIONED_CONTEXT_V2 structure.

Syntax

typedef struct _WWAN_SET_PROVISIONED_CONTEXT_V2 {
  WWAN_SET_CONTEXT             basicInfo;
  WWAN_CONTEXT_OPERATIONS      Operation;
  WWAN_IP_TYPE                 IPType;
  WWAN_CONTEXT_ENABLE          Enable;
  WWAN_CONTEXT_ROAMING_CONTROL Roaming;
  WWAN_CONTEXT_MEDIA_TYPE      MediaType;
  WWAN_CONFIGURATION_SOURCE    Source;
  int                          Reserved;
  WWAN_SINGLE_NSSAI            Snssai;
} WWAN_SET_PROVISIONED_CONTEXT_V2, *PWWAN_SET_PROVISIONED_CONTEXT_V2;

Members

basicInfo

A WWAN_SET_CONTEXT structure that represents the basic information for this provisioned context.

Operation

A WWAN_CONTEXT_OPERATIONS value that specifies the types of operation used in this Set command.

IPType

A WWAN_IP_TYPE value that specifies the supported IP types for this provisioned context.

Enable

A WWAN_CONTEXT_ENABLE value that specifies whether the context is enabled or disabled in the modem.

Roaming

A WWAN_CONTEXT_ROAMING_CONTROL value that specifies which roaming condition applies to this context.

MediaType

A WWAN_CONTEXT_MEDIA_TYPE value that specifies the supported media types for this provisioned context.

Source

A WWAN_CONFIGURATION_SOURCE value that specifies the creation source of the context.

Reserved

Reserved for system use. Miniport drivers should not read or write to this value.

Snssai

A WWAN_SINGLE_NSSAI structure representing a single Network Slice Selection Assistance Information (NSSAI).

Requirements

Requirement Value
Minimum supported client Windows 11, version 22H2
Header wwan.h

See also

WWAN_SET_CONTEXT

WWAN_CONTEXT_OPERATIONS

WWAN_IP_TYPE

WWAN_CONTEXT_ENABLE

WWAN_CONTEXT_ROAMING_CONTROL

WWAN_CONTEXT_MEDIA_TYPE

WWAN_CONFIGURATION_SOURCE

WWAN_SINGLE_NSSAI

NDIS_WWAN_SET_PROVISIONED_CONTEXT_V2