2.2.1.2.153 IPBOOTP_IF_STATS

The IPBOOTP_IF_STATS structure is an MIB entry, stores per interface statistics for the IPBOOTP. All of the IP addresses are in network order. This structure is read-only.

 typedef struct _IPBOOTP_IF_STATS {
   DWORD IS_State;
   DWORD IS_SendFailures;
   DWORD IS_ReceiveFailures;
   DWORD IS_ArpUpdateFailures;
   DWORD IS_RequestsReceived;
   DWORD IS_RequestsDiscarded;
   DWORD IS_RepliesReceived;
   DWORD IS_RepliesDiscarded;
 } IPBOOTP_IF_STATS,
  *PIPBOOTP_IF_STATS;

IS_State: Contains status of the IPBOOTP. This member is read-only.

Value

Meaning

IPBOOTP_STATE_ENABLED

0x00000001

The interface is enabled.

IPBOOTP_STATE_BOUND

0x00000002

The socket is bound and can listen to the IPBOOTP packets [RFC1542].

IS_SendFailures: The number of relay messages that could not be sent.

IS_ReceiveFailures: The number of times errors were encountered in receiving relay messages.

IS_ArpUpdateFailures: The number of times errors were encountered while updating the ARP cache.

IS_RequestsReceived: The number of IP BOOTP requests received.

IS_RequestsDiscarded: The number of IP BOOTP requests discarded.

IS_RepliesReceived: The number of IP BOOTP replies received.

IS_RepliesDiscarded: The number of IP BOOTP replies discarded.