IPX_INFO

Returns information about the IPX protocol.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct 
  { 
     nuint32   IPXSendPacketCount ; 
     nuint16   IPXMalformPacketCount ; 
     nuint32   IPXGetECBRequestCount ; 
     nuint32   IPXGetECBFailCount ; 
     nuint32   IPXAESEventCount ; 
     nuint16   IPXPostponedAESCount ; 
     nuint16   IPXMaxConfiguredSocketCount ; 
     nuint16   IPXMaxOpenSocketCount ; 
     nuint16   IPXOpenSocketFailCount ; 
     nuint32   IPXListenECBCount ; 
     nuint16   IPXECBCancelFailCount ; 
     nuint16   IPXGetLocalTargetFailCount ; 
  } IPX_INFO; 
  

Delphi Structure

  uses calwin32 
   
  IPX_INFO = packed Record 
      IPXSendPacketCount : nuint32;  
      IPXMalformPacketCount : nuint16;  
      IPXGetECBRequestCount : nuint32;  
      IPXGetECBFailCount : nuint32;  
      IPXAESEventCount : nuint32;  
      IPXPostponedAESCount : nuint16;  
      IPXMaxConfiguredSocketCount : nuint16;  
      IPXMaxOpenSocketCount : nuint16;  
      IPXOpenSocketFailCount : nuint16;  
      IPXListenECBCount : nuint32;  
      IPXECBCancelFailCount : nuint16;  
      IPXGetLocalTargetFailCount : nuint16; 
    End;
  

Fields

IPXSendPacketCount
Specifies the number of IPX packets sent by the server.
IPXMalformPacketCount
Specifies the number of IPX packets discarded because they were malformed.
IPXGetECBRequestCount
Specifies the number of ECB requests.
IPXGetECBFailCount
Specifies the number of times an ECB was requested, but could not be supplied.
IPXAESEventCount
Specifies the number of AES events scheduled.
IPXPostponedAESCount
Specifies the number of AES events that could not be scheduled, but were placed in a waiting list.
IPXMaxConfiguredSocketCount
Specifies the maximum number of sockets that can be open at one time.
IPXMaxOpenSocketCount
Specifies the maximum number of sockets open at one time since the server was booted.
IPXOpenSocketFailCount
Specifies the number of times a request to open a socket failed.
IPXListenECBCount
Specifies the number of ECBs listening for a packet.
IPXECBCancelFailCount
Specifies the number of ECB listens that were cancelled.
IPXGetLocalTargetFailCount
Specifies the number of times the server failed to find the target.