NWFSE_PROTOCOL_STK_STATS_INFO

Returns information about protocol stack statistics. Used by NWGetProtocolStackStatsInfo.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     SERVER_AND_VCONSOLE_INFO   serverTimeAndVConsoleInfo ; 
     nuint16                    reserved ; 
     nuint8                     statMajorVersionNum ; 
     nuint8                     statMinorVersionNum ; 
     nuint16                    commonCounters ; 
     nuint32                    validCountersMask ; 
     nuint32                    totalTxPackets ; 
     nuint32                    totalRxPackets ; 
     nuint32                    ignoredRxPackets ; 
     nuint16                    numCustomCounters ; 
  } NWFSE_PROTOCOL_STK_STATS_INFO;
  

Delphi Structure

  uses calwin32 
   
    NWFSE_PROTOCOL_STK_STATS_INFO = packed Record 
      serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;  
      reserved : nuint16;
      padding  : nuint16;  
      statMajorVersionNum : nuint8;  
      statMinorVersionNum : nuint8;  
      commonCounters : nuint16; 
      validCountersMask : nuint32;  
      totalTxPackets : nuint32;  
      totalRxPackets : nuint32;  
      ignoredRxPackets : nuint32;  
      numCustomCounters : 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.
statMajorVersionNum
Specifies the major version number of the statistics table.
statMinorVersionNum
Specifies the minor version number of the statistics table.
commonCounters
Specifies the number of counters in the fixed portion of the table, current 3.
validCountersMask
Specifies which counters are valid, right most bit for the first counter; 0 = Counter is valid, 1 = Counter is invalid
totalTxPackets
Contains the total number of packets that were requested to be transmitted.
totalRxPackets
Specifies the total number of packets that were requested to be transmitted.
ignoredRxPackets
Specifies the number of incoming packets that were ignored by the stack.
numCustomCounters
Specifies the number of custom counters for the protocol stack.