<div class="content"><p>The <b>IPX_IF_STATS</b> structure MAY<a id="Appendix_A_Target_98"></a><a aria-label="Product behavior note 98" href="3bb906f0-b077-47ab-ad11-d8d807afde26#Appendix_A_98" data-linktype="relative-path">&lt;98&gt;</a> be used to gather the IPX
interface statistics. This structure is returned as part of the following
methods:  </p><ul><li><p><span><span> 
</span></span><a href="ebc5c709-36d8-4520-a0ac-6f36d2d6c0b2" data-linktype="relative-path"><b>RMIBEntryGet (section 3.1.4.30)</b></a> 
</p>
</li><li><p><span><span> 
</span></span><a href="9102e585-2f62-4408-bfb6-02a6460cc883" data-linktype="relative-path"><b>RMIBEntryGetFirst (section 3.1.4.31)</b></a><span> </span></p>
</li><li><p><span><span> 
</span></span><a href="50f78033-d248-4272-b4b9-a2519a0f304d" data-linktype="relative-path"><b>RMIBEntryGetNext (section 3.1.4.32)</b></a><span> </span></p>
<div><pre> 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;
</pre></div>
</li></ul><p><b>IfOperState: </b>The operational status of the
interface. This member can be one of the following values.</p><dl>
<dd>
<table><thead>
  <tr>
   <th>
   <p>Value</p>
   </th>
   <th>
   <p>Meaning</p>
   </th>
  </tr>
 </thead><tbody><tr>
  <td>
  <p>OPER_STATE_DOWN</p>
  <p>0x00000001</p>
  </td>
  <td>
  <p>Nonoperational.</p>
  </td>
 </tr><tr>
  <td>
  <p>OPER_STATE_UP</p>
  <p>0x00000002</p>
  </td>
  <td>
  <p>Operational and can pass packets.</p>
  </td>
 </tr><tr>
  <td>
  <p>OPER_STATE_SLEEPING</p>
  <p>0x00000003</p>
  </td>
  <td>
  <p>Operational but has to connect to pass packets.</p>
  </td>
 </tr></tbody></table>
</dd></dl><p><b>MaxPacketSize: </b>The size of the MAX size packet
received on the interface.</p><p><b>InHdrErrors: </b>The number of packets received
with header errors.</p><p><b>InFiltered: </b>The number of incoming packets <a href="fc2dfae9-0d04-4e1d-97c9-c51c2dc06c3b#gt_ffbe7b55-8e84-4f41-a18d-fc29191a4cda" data-linktype="relative-path">filtered</a>.</p><p><b>InNoRoutes: </b>The number of packets received
with no matching routes.</p><p><b>InDiscards: </b>The number of incoming packets
discarded.</p><p><b>InDelivers: </b>The number of incoming packets
delivered.</p><p><b>OutFiltered: </b>The number of outgoing packets
filtered.</p><p><b>OutDiscards: </b>The number of outgoing packets
discarded.</p><p><b>OutDelivers: </b>The number of outgoing packets
delivered.</p><p><b>NetbiosReceived: </b>The number of <a href="fc2dfae9-0d04-4e1d-97c9-c51c2dc06c3b#gt_b86c44e6-57df-4c48-8163-5e3fa7bdcff4" data-linktype="relative-path">NetBIOS</a> packets received.</p><p><b>NetbiosSent: </b>The number of NetBIOS packets
sent.</p></div>