// ndiswwan.h
typedef struct _NDIS_WWAN_NETWORK_IDLE_HINT {
NDIS_OBJECT_HEADER Header;
WWAN_NETWORK_IDLE_HINT IdleHint;
} NDIS_WWAN_NETWORK_IDLE_HINT, *PNDIS_WWAN_NETWORK_IDLE_HINT;
View the official Windows Driver Kit DDI referenceNo description available.
The NDIS_WWAN_NETWORK_IDLE_HINT structure contains a hint for the network interface regarding whether data is expected to be active or idle on the interface.
HeaderThe type, revision, and size of the NDIS_WWAN_NETWORK_IDLE_HINT structure. This member is formatted as an NDIS_OBJECT_HEADER structure.
The miniport driver must set the members of Header to the following values:
| Member | Setting |
|---|---|
| Type | NDIS_OBJECT_TYPE_DEFAULT |
| Revision | NDIS_WWAN_NETWORK_IDLE_HINT_REVISION_1 |
| Size | SIZEOF_NDIS_WWAN_NETWORK_IDLE_HINT_1 |
IdleHintA formatted WWAN_NETWORK_IDLE_HINT object that contains the network idle hint.