NWFSE_SERVER_INFO

Returns server information. Used by NWGetServerInfo.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     SERVER_AND_VCONSOLE_INFO   serverTimeAndVConsoleInfo ; 
     nuint16                    reserved ; 
     nuint8                     serverAddress [12]; 
     nuint16                    hopsToServer ; 
  } NWFSE_SERVER_INFO;
  

Delphi Structure

  uses calwin32 
   
  NWFSE_SERVER_INFO = packed Record 
     serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO; 
     reserved : nuint16;
     padding  : nuint16; 
     serverAddress : Array[0..11] Of nuint8; 
     hopsToServer : nuint16; 
  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.
serverAddress
contains the node address of the server.
hopsToServer
Contains the number of hops to the server.