NDIS_PORT - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ntddndis.h

typedef struct _NDIS_PORT {
  PNDIS_PORT                Next;
  PVOID                     NdisReserved;
  PVOID                     MiniportReserved;
  PVOID                     ProtocolReserved;
  NDIS_PORT_CHARACTERISTICS PortCharacteristics;
} NDIS_PORT, *PNDIS_PORT;

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ntddndis-_ndis_port)

_NDIS_PORT structure

Description

The NDIS_PORT structure specifies the characteristics of an NDIS port and a pointer to the next element in a linked list of ports.

Members

Next

A pointer to the next port in the linked list of ports.

NdisReserved

Reserved for NDIS.

MiniportReserved

Reserved for miniport drivers.

ProtocolReserved

Reserved for protocol drivers.

PortCharacteristics

An NDIS_PORT_CHARACTERISTICS structure that specifies the characteristics of the port.

Remarks

The NDIS_PORT structure is used to create a linked list of ports. Such a linked list is used in port activation (NetEventPortActivation) Plug and Play (PnP) events.

See also

NDIS_PORT_CHARACTERISTICS