NDIS_ROUTING_DOMAIN_ENTRY structure (ntddndis.h)
The NDIS_ROUTING_DOMAIN_ENTRY structure is used by the OID_GEN_ISOLATION_PARAMETERS OID to return the routing domain entries for a VM network adapter's port.
Syntax
typedef struct _NDIS_ROUTING_DOMAIN_ENTRY {
NDIS_OBJECT_HEADER Header;
ULONG Flags;
NDIS_ROUTING_DOMAIN_ID RoutingDomainId;
NDIS_ROUTING_DOMAIN_NAME RoutingDomainName;
ULONG NumIsolationEntries;
ULONG FirstIsolationEntryOffset;
} NDIS_ROUTING_DOMAIN_ENTRY, *PNDIS_ROUTING_DOMAIN_ENTRY;
Members
Header
The type, revision, and size of the NDIS_ROUTING_DOMAIN_ENTRY structure. This member is formatted as an NDIS_OBJECT_HEADER structure.
The Type member of Header must be set to NDIS_OBJECT_TYPE_DEFAULT. To specify the version of the NDIS_ROUTING_DOMAIN_ENTRY structure, the Revision member of Header must be set to the following value:
NDIS_ROUTING_DOMAIN_ENTRY_REVISION_1
Original version for NDIS 6.40 and later.
Set the Size member to NDIS_SIZEOF_NDIS_ROUTING_DOMAIN_ENTRY_REVISION_1.
Flags
A ULONG value that contains a bitwise OR of flags. This member is reserved for NDIS.
RoutingDomainId
The routing domain identifier for the VM network adapter. This identifier is a GUID.
RoutingDomainName
An NDIS_ISOLATION_NAME structure that contains the routing domain name for the VM network adapter.
NumIsolationEntries
A ULONG value that specifies the number of NDIS_ROUTING_DOMAIN_ISOLATION_ENTRY structures in the array that follows the NDIS_ISOLATION_PARAMETERS structure.
FirstIsolationEntryOffset
A ULONG value that specifies the offset, in bytes, to the first NDIS_ROUTING_DOMAIN_ENTRY element in the array that follows the NDIS_ISOLATION_PARAMETERS structure in the buffer that the InformationBuffer member of the NDIS_OID_REQUEST structure points to. The offset is measured from the start of the NDIS_ROUTING_DOMAIN_ENTRY structure to the beginning of the first element of the array.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Supported in NDIS 6.40 and later. |
Header | ntddndis.h (include Ndis.h) |
See also
NDIS_ROUTING_DOMAIN_ENTRY_GET_NEXT