SPX_INFO

Returns information about the SPX protocol.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     nuint16   SPXMaxConnsCount ; 
     nuint16   SPXMaxUsedConns ; 
     nuint16   SPXEstConnReq ; 
     nuint16   SPXEstConnFail ; 
     nuint16   SPXListenConnectReq ; 
     nuint16   SPXListenConnectFail ; 
     nuint32   SPXSendCount ; 
     nuint32   SPXWindowChokeCount ; 
     nuint16   SPXBadSendCount ; 
     nuint16   SPXSendFailCount ; 
     nuint16   SPXAbortedConn ; 
     nuint32   SPXListenPacketCount ; 
     nuint16   SPXBadListenCount ; 
     nuint32   SPXIncomingPacketCount ; 
     nuint16   SPXBadInPacketCount ; 
     nuint16   SPXSuppressedPackCount ; 
     nuint16   SPXNoSesListenECBCount ; 
     nuint16   SPXWatchDogDestSesCount ; 
  } SPX_INFO;
  

Delphi Structure

  uses calwin32 
   
   SPX_INFO = packed Record 
      SPXMaxConnsCount : nuint16;  
      SPXMaxUsedConns : nuint16;  
      SPXEstConnReq : nuint16;  
      SPXEstConnFail : nuint16;  
      SPXListenConnectReq : nuint16;  
      SPXListenConnectFail : nuint16;  
      SPXSendCount : nuint32;  
      SPXWindowChokeCount : nuint32;  
      SPXBadSendCount : nuint16;  
      SPXSendFailCount : nuint16;  
      SPXAbortedConn : nuint16;  
      SPXListenPacketCount : nuint32;  
      SPXBadListenCount : nuint16;  
      SPXIncomingPacketCount : nuint32;  
      SPXBadInPacketCount : nuint16;  
      SPXSuppressedPackCount : nuint16;  
      SPXNoSesListenECBCount : nuint16;  
      SPXWatchDogDestSesCount : nuint16; 
    End;
  

Fields

SPXMaxConnsCount
Specifies the maximum number of SPX™ connections allowed on the server.
SPXMaxUsedConns
Specifies the maximum number of SPX connections used at one time since the server was booted.
SPXEstConnReq
Specifies the total number of SPX connections established since the server was booted.
SPXEstConnFail
Specifies the number of times that an attempt to establish an SPX connection failed since the server was booted.
SPXListenConnectReq
Specifies the number of requests to post a listen since the server was booted.
SPXListenConnectFail
Specifies the number of times a request to post a listen failed since the server was booted.
SPXSendCount
Specifies the number of SPX packets sent since the server was booted.
SPXWindowChokeCount
Specifies the value used internally for debugging.
SPXBadSendCount
Specifies the number of bad packets sent since the server was booted.
SPXSendFailCount
Specifies the number of packets sent for which no acknowledgment was received since the server was booted.
SPXAbortedConn
Specifies the number of times a connection was aborted since the server was booted.
SPXListenPacketCount
Specifies the number of times a listen was posted on a socket since the server was booted.
SPXBadListenCount
Specifies the number of times a listen on a socket failed since the server was booted.
SPXIncomingPacketCount
Specifies the number of packets in the queue.
SPXBadInPacketCount
Specifies the number of bad SPX packets received since the server was booted.
SPXSuppressedPackCount
Specifies the number of times a duplicate SPX packet was received since the server was booted.
SPXNoSesListenECBCount
Specifies the number of times a listen was posted on a session that was not established since the server was booted.
SPXWatchDogDestSesCount
Specifies the number of times the watchdog destroyed a session since the server was booted.