// ndiswwan.h
typedef struct _NDIS_WWAN_MPDP_LIST {
NDIS_OBJECT_HEADER Header;
WWAN_STATUS uStatus;
WWAN_LIST_HEADER ChildInterfaceList;
} NDIS_WWAN_MPDP_LIST, *PNDIS_WWAN_MPDP_LIST;
View the official Windows Driver Kit DDI referenceNo description available.
The NDIS_WWAN_MPDP_LIST structure contains a list of existing Multiple Packet Data Protocol (MPDP) interfaces for the mobile broadband device representing the primary PDP context/EPS bearer.
HeaderThe header with type, revision, and size information about the NDIS_WWAN_MPDP_LIST structure. The MB Service sets the header with the values that are shown in the following table when it sends the data structure to the miniport driver for set operations. Miniport drivers must set the header with the same values when they send the data structure to the MBB service.
| Header submember | Value |
|---|---|
| Type | NDIS_OBJECT_TYPE_DEFAULT |
| Revision | NDIS_WWAN_MPDP_LIST_REVISION_1 |
| Size | sizeof(NDIS_WWAN_MPDP_LIST) |
uStatusA WWAN_STATUS value that indicates the result of the query request.
ChildInterfaceListIf uStatus == WWAN_STATUS_SUCCESS, this field contains a list of the existing MPDP interfaces. The ElementType member of this list header must be WwanStructMPDPChildInterface, and the ElementCount member of interface GUIDs must follow this header.
This structure is used in an NDIS_STATUS_WWAN_MPDP_LIST status indication, which is sent as an asynchronous response to an OID_WWAN_MPDP query request.