/**********************************************************************/ /** Microsoft Windows NT **/ /** Copyright(c) Microsoft Corp., 1993 **/ /**********************************************************************/ /* OcspSvcCtrs.h Offset definitions for the OCSP Server's counter objects & counters. These offsets *must* start at 0 and be multiples of 2. In the OpenDhcpPerformanceData procedure, they will be added to the DHCP Server's "First Counter" and "First Help" values in order to determine the absolute location of the counter & object names and corresponding help text in the registry. This file is used by the ocspsvcctrs.ini definition file. OcspSvcCtrs.INI is parsed by the LODCTR utility to load the object & counter names into the registry. */ #ifndef _OCSPSVCCTRS_H_ #define _OCSPSVCCTRS_H_ // // The OCSP Server counter object. // #define OCSPSVC_SERVER_OBJECT 0 // // The individual counters. // #define OCSPSVC_SERVER_REQUESTS 2 #define OCSPSVC_SERVER_REQUESTTIME 4 #define OCSPSVC_SERVER_FAILEDREQ 6 #define OCSPSVC_SERVER_ISSUEDREQ 8 #define OCSPSVC_SERVER_SIGNINGTIME 10 #define OCSPSVC_SERVER_REVPROVTIME 12 // // The OCSP Server Connections counter object // #define OCSPSVC_SERVER_CONNECTIONS_OBJECT 14 // // The individual counters. // #define OCSPSVC_SERVER_CONNECTIONS_ACTIVE 16 #endif _OCSPSVCCTRS_H_