2.2.1.2.107 IPX_IF_STATS
The IPX_IF_STATS structure MAY<98> be used to gather the IPX interface statistics. This structure is returned as part of the following methods:
RMIBEntryGetNext (section 3.1.4.32)
typedef struct _IPX_IF_STATS { ULONG IfOperState; ULONG MaxPacketSize; ULONG InHdrErrors; ULONG InFiltered; ULONG InNoRoutes; ULONG InDiscards; ULONG InDelivers; ULONG OutFiltered; ULONG OutDiscards; ULONG OutDelivers; ULONG NetbiosReceived; ULONG NetbiosSent; } IPX_IF_STATS, *PIPX_IF_STATS;
IfOperState: The operational status of the interface. This member can be one of the following values.
-
Value
Meaning
OPER_STATE_DOWN
0x00000001
Nonoperational.
OPER_STATE_UP
0x00000002
Operational and can pass packets.
OPER_STATE_SLEEPING
0x00000003
Operational but has to connect to pass packets.
MaxPacketSize: The size of the MAX size packet received on the interface.
InHdrErrors: The number of packets received with header errors.
InFiltered: The number of incoming packets filtered.
InNoRoutes: The number of packets received with no matching routes.
InDiscards: The number of incoming packets discarded.
InDelivers: The number of incoming packets delivered.
OutFiltered: The number of outgoing packets filtered.
OutDiscards: The number of outgoing packets discarded.
OutDelivers: The number of outgoing packets delivered.
NetbiosReceived: The number of NetBIOS packets received.
NetbiosSent: The number of NetBIOS packets sent.