NWFSE_KNOWN_SERVER_INFO

Returns server information. Used by NWGetKnownServersInfo.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct { 
     SERVER_AND_VCONSOLE_INFO   serverTimeAndVConsoleIInfo; 
     nuint16                    reserved ; 
     nuint32                    numberOfEntries ; 
     nuint8                     data [512]; 
  } NWFSE_KNOWN_SERVER_INFO;
  

Delphi Structure

  uses calwin32 
   
    NWFSE_KNOWN_SERVER_INFO = packed Record 
      serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;  
      reserved : nuint16;
      padding  : nuint16;  
      numberOfEntries : nuint32;  
      data : Array[0..511] Of nuint8; 
    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 (pass 0).
numberOfEntries
Specifies the number of entries.
data
Specifies an array containing the following fields: SERVER_INFO=RECORD network Address: Array[0..3] of BYTE; nodeAddress: Array[0..5] of BYTE; socketAddress: nuint16; HopsToServer: nuint16; ServerName: Array[0..47] of char8; (#0 terminated) END;

The next field starts immediately after the trailing #0 of the last ServerName field.