// ntddndis.h
typedef enum _NDIS_SWITCH_PORT_STATE {
NdisSwitchPortStateUnknown,
NdisSwitchPortStateCreated,
NdisSwitchPortStateTeardown,
NdisSwitchPortStateDeleted
} NDIS_SWITCH_PORT_STATE;
View the official Windows Driver Kit DDI reference
No description available.
The NDIS_SWITCH_PORT_STATE enumeration specifies the current state of the Hyper-V extensible switch port.
NdisSwitchPortStateUnknown
This value specifies an undefined port state. This value is unused.
NdisSwitchPortStateCreated
This value specifies that the port is in the created state.
NdisSwitchPortStateTeardown
This value specifies that the port is being torn down.
NdisSwitchPortStateDeleted
This value specifies that the port has been deleted.
The PortState member of the NDIS_SWITCH_PORT_PARAMETER structure is an NDIS_SWITCH_PORT_STATE enumeration data type.
For more information about extensible switch port states, see Overview of Hyper-V Extensible Switch Ports.