<div class="content"><p>The <b>IPX_ROUTE</b> structure MAY<a id="Appendix_A_Target_101"></a><a aria-label="Product behavior note 101" href="3bb906f0-b077-47ab-ad11-d8d807afde26#Appendix_A_101" data-linktype="relative-path">&lt;101&gt;</a> be used to specify the
details for an IPX route in the RRAS server.</p><dl>
<dd>
<div><pre> typedef struct _IPX_ROUTE {
   ULONG InterfaceIndex;
   ULONG Protocol;
   UCHAR Network[4];
   USHORT TickCount;
   USHORT HopCount;
   UCHAR NextHopMacAddress[6];
   ULONG Flags;
 } IPX_ROUTE,
  *PIPX_ROUTE;
</pre></div>
</dd></dl><p><b>InterfaceIndex: </b>The local index value for the
network interface. This index value MAY change when a network adapter is
disabled and then enabled, or under other circumstances, and need not be
persistent.</p><p><b>Protocol: </b>The protocol that added the route.
The value MUST 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>IPX_PROTOCOL_LOCAL</p>
  <p>0x00000000</p>
  </td>
  <td>
  <p>Local route</p>
  </td>
 </tr><tr>
  <td>
  <p>IPX_PROTOCOL_STATIC</p>
  <p>0x00000001</p>
  </td>
  <td>
  <p>Static route</p>
  </td>
 </tr><tr>
  <td>
  <p>IPX_PROTOCOL_RIP</p>
  <p>0x00000002</p>
  </td>
  <td>
  <p>Added by RIP</p>
  </td>
 </tr><tr>
  <td>
  <p>IPX_PROTOCOL_NLSP</p>
  <p>0x00000004</p>
  </td>
  <td>
  <p>Added by NLSP</p>
  </td>
 </tr></tbody></table>
</dd></dl><p><b>Network: </b>This MUST be the 4-byte IPX network
number in hexadecimal (8 hexadecimal digits).</p><p><b>TickCount: </b>The number of ticks it takes to
reach the destination network where one tick is approximately 1/18 of a second.
This estimate is based on ongoing RIP requests and replies and is determined by
the transmission speed of network segments. LAN links are typically one tick,
and WAN links, such as a T1 link, are usually six or seven ticks. The tick
count is an estimated, not precise, measurement of the delay.</p><p><b>HopCount: </b>This MUST be the number of routers
to be traversed to get to the network number.</p><p><b>NextHopMacAddress: </b>This MUST be the 6-byte MAC
address of the <a href="fc2dfae9-0d04-4e1d-97c9-c51c2dc06c3b#gt_c626520e-7d79-4b5e-a5c9-1e2b0eaf1995" data-linktype="relative-path">next hop</a>
in hexadecimal (12 hexadecimal digits).</p><p><b>Flags: </b>Indicates the type of route being
added. It MUST 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>GLOBAL_WAN_ROUTE</p>
  <p>0x00000001</p>
  </td>
  <td>
  <p>Global route.</p>
  </td>
 </tr><tr>
  <td>
  <p>DO_NOT_ADVERTISE_ROUTE</p>
  <p>0x00000002</p>
  </td>
  <td>
  <p>This route is not advertised.</p>
  </td>
 </tr></tbody></table>
</dd></dl><p> </p></div>