ROUTERS_INFO

Returns information about the routers on a network.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     nuint8    nodeAddress [6]; 
     nuint32   connectedLAN ; 
     nuint16   routeHops ; 
     nuint16   routeTime ; 
  } ROUTERS_INFO; 
  

Delphi Structure

  uses calwin32 
   
    ROUTERS_INFO = packed Record 
      nodeAddress : Array[0..5] Of nuint8; 
      connectedLAN : nuint32;  
      routeHops : nuint16;  
      routeTime : nuint16; 
    End; 
  

Fields

nodeAddress
Contains the 6-byte network address of the router.
connectedLAN
Contains the LAN board number of the router.
routeHops
Contains the number of hops to the network specified by networkNumber.
routeTime
Contains the time (in ticks) to the network specified by networkNumber.