NWFSE_ACTIVE_CONN_LIST

Returns the Active Connection List by type. Used by NWGetActiveConnListByType.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     SERVER_AND_VCONSOLE_INFO   serverTimeAndVConsoleInfo ; 
     nuint16                    reserved ; 
     nuint8                     activeConnBitList [512]; 
  } NWFSE_ACTIVE_CONN_LIST; 
  

Delphi Structure

  uses calwin32 
   
    NWFSE_ACTIVE_CONN_LIST = packed Record 
      serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;  
      reserved : nuint16;
      padding : nuint16;  
      activeConnBitList : 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/18 of a second). When this parameter reaches 0xFFFFFFFF, it wraps to zero.
reserved
Reserved for future use.
activeConnBitList
Indicates active connections. An array of 512 bytes is returned where a bit is set for each active connection. The connection number is determined by its position in the array.