NET_IF_ADMIN_STATUS enumeration (ifdef.h)
The NET_IF_ADMIN_STATUS enumeration type specifies the NDIS network interface administrative status, as described in RFC 2863.
Syntax
typedef enum _NET_IF_ADMIN_STATUS {
NET_IF_ADMIN_STATUS_UP = 1,
NET_IF_ADMIN_STATUS_DOWN = 2,
NET_IF_ADMIN_STATUS_TESTING = 3
} NET_IF_ADMIN_STATUS, *PNET_IF_ADMIN_STATUS;
Constants
NET_IF_ADMIN_STATUS_UP Value: 1 Specifies that the interface is initialized and enabled, but the interface is not necessarily ready to transmit and receive network data because that depends on the operational status of the interface. For more information about the operational status of an interface, see OID_GEN_OPERATIONAL_STATUS. |
NET_IF_ADMIN_STATUS_DOWN Value: 2 Specifies that the interface is down, and this interface cannot be used to transmit or receive network data. |
NET_IF_ADMIN_STATUS_TESTING Value: 3 Specifies that the interface is in a test mode, and no network data can be transmitted or received. |
Remarks
For more information on RFC 2863, see "The Interfaces Group MIB".
Requirements
Requirement | Value |
---|---|
Minimum supported client | Supported in NDIS 6.0 and later. |
Header | ifdef.h (include Netioapi.h, Ntddndis.h) |