The WINSINTF_STAT_T structure defines counters, configured timestamps, the pull replication statistics for a given WINS server. This structure is used by the structure WINSINTF_RESULTS_T (section 2.2.2.7).

 typedef struct _WINSINTF_STAT_T {
   struct {
     DWORD NoOfUniqueReg;
     DWORD NoOfGroupReg;
     DWORD NoOfQueries;
     DWORD NoOfSuccQueries;
     DWORD NoOfFailQueries;
     DWORD NoOfUniqueRef;
     DWORD NoOfGroupRef;
     DWORD NoOfRel;
     DWORD NoOfSuccRel;
     DWORD NoOfFailRel;
     DWORD NoOfUniqueCnf;
     DWORD NoOfGroupCnf;
   } Counters;
   struct {
     SYSTEMTIME WINSStartTime;
     SYSTEMTIME LastPScvTime;
     SYSTEMTIME LastATScvTime;
     SYSTEMTIME LastTombScvTime;
     SYSTEMTIME LastVerifyScvTime;
     SYSTEMTIME LastPRplTime;
     SYSTEMTIME LastATRplTime;
     SYSTEMTIME LastNTRplTime;
     SYSTEMTIME LastACTRplTime;
     SYSTEMTIME LastInitDbTime;
     SYSTEMTIME CounterResetTime;
   } TimeStamps;
   DWORD NoOfPnrs;
   [unique, size_is(NoOfPnrs)] PWINSINTF_RPL_COUNTERS_T pRplPnrs;
 } WINSINTF_STAT_T,
  *PWINSINTF_STAT_T;

Counters: A structure that contains 32-bit unsigned integer counters, which measure various statistics on a WINS server.

NoOfUniqueReg: The number of unique registrations on the target WINS server since the service was started.

NoOfGroupReg: The number of group registrations at the target WINS server since the service was started.

NoOfQueries: The number of queries that clients have performed on the target WINS server to resolve NetBIOS names since the service was started. This value is the sum of the values maintained in NoOfSuccQueries and NoOfFailQueries.

NoOfSuccQueries: The number of successful name resolution queries on the target WINS server since the service was started.

NoOfFailQueries: The number of failed name resolution queries on the target WINS server since the service was started.

NoOfUniqueRef: The number of unique name refreshes on the target WINS server since the service was started.

NoOfGroupRef: The number of group name refreshes on the target WINS server since the service was started.

NoOfRel: The number of name releases on the target WINS server since the service was started. This value is the sum of the values maintained in NoOfSuccRel and NoOfFailRel.

NoOfSuccRel: The number of successful name releases on the target WINS server since the service was started.

NoOfFailRel: The number of failed name releases on the target WINS server since the service was started.

NoOfUniqueCnf: The number of unique name conflicts on the target WINS server since the service was started. Unique name conflicts can occur in the following cases:

§ The server is registering or refreshing unique name requests from clients.

§ The server is replicating unique name records from a partner WINS server.

NoOfGroupCnf: The number of group name conflicts on the target WINS server since the service was started. Group name conflicts can occur in the following cases:

§ The server is registering or refreshing unique name requests from clients.

§ The server is replicating unique name records from a partner WINS server.

TimeStamps: A structure that contains data in SYSTEMTIME structures ([MS-DTYP] section 2.3.13), which reflect the local time zone of the target WINS server.

WINSStartTime: The time at which the WINS service was started on the target WINS server.

LastPScvTime: The time at which the last periodic scavenging operation was done on the target WINS server.

LastATScvTime: The time at which the last administrator-triggered scavenging operation was done on the target WINS server.

LastTombScvTime: The time at which the last scavenging operation was done for the replicated tombstone records on the target WINS server.

LastVerifyScvTime: The time at which the last verification scavenging operation was done for the replicated active records on the target WINS server.

LastPRplTime: The time at which the last periodic pull replication was done on the target WINS server.

LastATRplTime: The time at which the last administrator-triggered pull replication was done on the target WINS server.

LastNTRplTime: This member is not set and MUST be ignored on receipt.

LastACTRplTime: This member is not set and MUST be ignored on receipt.

LastInitDbTime: The time at which the last static database initialization was done on the target WINS server.

CounterResetTime: The last time at which the administrator has cleared the success and failure replication counters of the target WINS server.

NoOfPnrs: The number of pull partners configured for the target WINS server.

pRplPnrs: A pointer to structures that contain the details of successful and failed replication counters of configured pull partners at the target WINS server, since the time service was started; or, the time at which the last reset happened by a call to the method R_WinsResetCounters (section 3.1.4.12). The number of structures is specified by NoOfPnrs.