2.2.2.7 WINSINTF_RESULTS_T

The WINSINTF_RESULTS_T structure defines information related to the configuration and statistics of a target WINS server. This is used by RPC method R_WinsStatus.

 typedef struct _WINSINTF_RESULTS_T {
   DWORD NoOfOwners;
   WINSINTF_ADD_VERS_MAP_T AddVersMaps[WINSINTF_MAX_NO_RPL_PNRS];
   LARGE_INTEGER MyMaxVersNo;
   DWORD RefreshInterval;
   DWORD TombstoneInterval;
   DWORD TombstoneTimeout;
   DWORD VerifyInterval;
   DWORD WINSPriorityClass;
   DWORD NoOfWorkerThds;
   WINSINTF_STAT_T WINSStat;
 } WINSINTF_RESULTS_T,
  *PWINSINTF_RESULTS_T;

NoOfOwners: The number of owners whose records are part of the target WINS server database. The value of this member MUST be less than or equal to 25.

AddVersMaps: A structure containing the owner version map of the target WINS server. The number of valid entries is defined by the NoOfOwners value.

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

RefreshInterval: The refresh time interval configured on the target WINS server, in seconds.

TombstoneInterval: The tombstone interval configured on the target WINS server, in seconds.

TombstoneTimeout: The tombstone timeout configured on the target WINS server, in seconds.

VerifyInterval: The verify time interval configured on the target WINS server, in seconds.

WINSPriorityClass: The priority class of the WINS process running on the target WINS server. It SHOULD<2> have one of the following values:

Value

Meaning

NORMAL_PRIORITY_CLASS

0x00000020

The process has no special scheduling requirements.

HIGH_PRIORITY_CLASS

0x00000080

The process performs time-critical tasks that MUST be executed immediately for the process to run correctly. The threads of a high-priority class process preempt the threads of normal-priority class processes.

NoOfWorkerThds: The number of threads created in the WINS process for serving the NetBIOS name requests.

WINSStat: A WINSINTF_STAT_T structure (section 2.2.2.6) containing timing parameters configured on the target WINS server and the pull replication statistics of partner WINS servers.