Share via


NET_IF_ADMIN_STATUS (Compact 2013)

3/26/2014

This 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,
  NET_IF_ADMIN_STATUS_TESTING
} NET_IF_ADMIN_STATUS, *PNET_IF_ADMIN_STATUS;

Values

  • NET_IF_ADMIN_STATUS_UP
    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
    Specifies that the interface is down, and this interface cannot be used to transmit or receive network data.
  • NET_IF_ADMIN_STATUS_TESTING
    Specifies that the interface is in a test mode, and no network data can be transmitted or received.

Requirements

Header

ifdef.h

See Also

Reference

NDIS Network Interface Enumerations
OID_GEN_ADMIN_STATUS