NWFSE_NETWORK_ROUTERS_INFO

Returns information about the routers on a network. Used by NWGetNetworkRoutersInfo.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     SERVER_AND_VCONSOLE_INFO   serverTimeAndVConsoleInfo ; 
     nuint16                    reserved ; 
     nuint32                    NumberOfEntries ; 
     ROUTERS_INFO               routersInfo [36]; 
  } NWFSE_NETWORK_ROUTERS_INFO; 
  

Delphi Structure

  uses calwin32 
   
   NWFSE_NETWORK_ROUTERS_INFO = packed Record 
      serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;  
      reserved : nuint16;
      padding  : nuint16;  
      NumberOfEntries : nuint32;  
      routersInfo : Array[0..35] Of ROUTERS_INFO;  
    End;
  

Fields

serverTimeAndVConsoleInfo
Specifies the SERVER_AND_VCONSOLE_INFO structure containing the time since the server was brought up. This time is returned in ticks (approximately 1/8 of a second). When this parameter reaches 0xFFFFFFFF, it wraps to zero.
reserved
Is reserved for future use.
NumberOfEntries
Contains the number of ROUTERS_INFO structures in the buffer.
routersInfo
Contains the number of ROUTERS_INFO structures in the buffer.