FILE_SERVER_COUNTERS

Returns information regarding the number of file packets received by the server.

Service:Server Environment
Defined In:nwfse.h

Structure

  typedef struct { 
     nuint16   tooManyHops ; 
     nuint16   unknownNetwork ; 
     nuint16   noSpaceForService ; 
     nuint16   noReceiveBuffers ; 
     nuint16   notMyNetwork ; 
     nuint32   netBIOSProgatedCount ; 
     nuint32   totalPacketsServiced ; 
     nuint32   totalPacketsRouted ; 
  } FILE_SERVER_COUNTERS; 
  

Delphi Structure

  uses calwin32 
   
    FILE_SERVER_COUNTERS = packed Record 
      tooManyHops : nuint16;  
      unknownNetwork : nuint16;  
      noSpaceForService : nuint16;  
      noReceiveBuffers : nuint16;  
      notMyNetwork : nuint16;  
      netBIOSProgatedCount : nuint32;  
      totalPacketsServiced : nuint32;  
      totalPacketsRouted : nuint32;
    End; 
  

Fields

tooManyHops
Specifies the number of packets discarded because they had passed through more than 16 bridges without reaching their destination.
unknownNetwork
Specifies the number of packets discarded because their destination network was unknown to the server.
noSpaceForService
Is reserved (pass 0).
noReceiveBuffers
Specifies the number of times a packet was discarded because no buffers existed to receive it.
notMyNetwork
Specifies the number of received packets not destined for the server.
netBIOSProgatedCount
Specifies the number of NetBIOS packets received that were sent forward.
totalPacketsServiced
Specifies the total packets received by the server.
totalPacketsRouted
Specifies the number of all packets forwarded by the server.