NWFSE_FILE_SERVER_INFO

Returns file server information. Used by NWGetFileServerInfo.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     SERVER_AND_VCONSOLE_INFO   serverTimeAndVConsoleInfo ; 
     nuint16                    reserved ; 
     nuint32                    NCPStationsInUseCount ; 
     nuint32                    NCPPeakStationsInUseCount ; 
     nuint32                    numOfNCPRequests ; 
     nuint32                    serverUtilization ; 
     FSE_SERVER_INFO            ServerInfo ; 
     FILE_SERVER_COUNTERS       fileServerCounters ; 
  } NWFSE_FILE_SERVER_INFO;
  

Delphi Structure

  uses calwin32 
   
  NWFSE_FILE_SERVER_INFO = packed Record 
      serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;  
      reserved : nuint16;
      padding  : nuint16;  
      NCPStationsInUseCount : nuint32;  
      NCPPeakStationsInUseCount : nuint32;  
      numOfNCPRequests : nuint32;  
      serverUtilization : nuint32;  
      ServerInfo : FSE_SERVER_INFO;  
      fileServerCounters : FILE_SERVER_COUNTERS; 
    End;
  

Fields

serverTimeAndVConsoleInfo
Contains console version information and the time elapsed since the server was brought up. For more information, see SERVER_AND_VCONSOLE_INFO.
reserved
Reserved for future use.
NCPStationsInUseCount
Specifies the number of workstations connected to the server.
NCPPeakStationsInUseCount
Specifies the maximum number of workstations connected at one time since the server was brought up.
numOfNCPRequests
Specifies the number of NCP requests received by the server since it was brought up.
serverUtilization
Specifies the current percentage of CPU utilization for the server.
ServerInfo
Specifies the NetWare server statistics.
fileServerCounters
Specifies the NetWare server statistics.