NWFSE_ACTIVE_STACKS

Returns information about active protocol stacks. Used by NWGetActiveProtocolStacks.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     SERVER_AND_VCONSOLE_INFO   serverTimeAndVConsoleInfo: 
     nuint16                    reserved ; 
     nuint32                    maxNumOfStacks ; 
     nuint32                    stackCount ; 
     nuint32                    nextStartNum ; 
     STACK_INFO                 stackInfo [FSE_MAX_NUM_OF_STACKINFO]; 
  } NWFSE_ACTIVE_STACKS;
  

Delphi Structure

  uses calwin32 
   
   NWFSE_ACTIVE_STACKS = packed Record 
      serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO; 
      reserved : nuint16;
      padding  : nuint16;  
      maxNumOfStacks : nuint32;  
      stackCount : nuint32;  
      nextStartNum : nuint32;  
      stackInfo : Array[0.. FSE_MAX_NUM_OF_STACKINFO -1] Of STACK_INFO; 
    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/18 of a second). When this parameter reaches 0xFFFFFFFF, it wraps to zero.
reserved
Reserved for future use.
maxNumOfStacks
Specifies the total number of protocol stacks.
stackCount
Specifies the number of STACK_INFO structures in the buffer.
nextStartNum
Is the start number to use on subsequent calls.
stackInfo
Contains the first ProtocolStackInfo structure in the buffer. The fields of this structure are defined as follows:

stackNumber field

Contains the protocol number.

stackName field

The contains the protocol name.