NWFSE_PROTOCOL_ID_NUMS

Returns the protocol stack numbers using a media number or using a LAN board number. Used by NWGetProtocolStkNumsByMediaNum.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     SERVER_AND_VCONSOLE_INFO   serverTimeAndVConsoleInfo ; 
     nuint16                    reserved ; 
     nuint32                    stackIDCount ; 
     nuint32                    stackIDs [FSE_STACK_IDS_MAX]; 
  } NWFSE_PROTOCOL_ID_NUMS;
  

Delphi Structure

  uses calwin32 
   
    NWFSE_PROTOCOL_ID_NUMS = packed Record 
      serverTimeAndVConsoleInfo : SERVER_AND_VCONSOLE_INFO;  
      reserved : nuint16;
      padding  : nuint16;  
      stackIDCount : nuint32;  
      stackIDs : Array[0.. FSE_STACK_IDS_MAX -1] Of nuint32; 
    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.
stackIDCount
Specifies the number of protocol stack ID Number returned in stackIDs by NWGetProtocolStkNumsByMediaNum.
stackIDs
Specifies the list of stack ID numbers.