NWFSE_STATS_INFO

Returns Server Environment statistical information. Used by NWGetServerConnInfo.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     nuint8    totalBytesRead[6]; 
     nuint8    totalBytesWritten[6]; 
     nuint32   totalRequests; 
  } NWFSE_STATS_INFO;
  

Delphi Syntax

  uses calwin32 
  
    NWFSE_STATS_INFO = packed RECORD
        totalBytesRead : Array[1..6] of nuint8;
        totalBytesWritten : Array[1..6] of nuint8;
        totalRequests : nuint32;
    End;
  

Fields

totalBytesRead
Specifies the number of bytes the user read (48-bit value).
totalBytesWritten
Specifies the number of bytes the user wrote (48-bit value).
totalRequests
Specifies the number of requests the user sent.