2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

statistics counting was slowing down the server. Make client.c:count_query()

inline and remove dns_stats_ncounters(), which just returned the public
constant DNS_STATS_NCOUNTERS.
This commit is contained in:
Brian Wellington
2001-01-23 01:50:29 +00:00
parent 7817a6f41b
commit d29da750d2
4 changed files with 16 additions and 29 deletions

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: server.c,v 1.283 2001/01/22 19:21:18 gson Exp $ */
/* $Id: server.c,v 1.284 2001/01/23 01:50:26 bwelling Exp $ */
#include <config.h>
@@ -2395,7 +2395,7 @@ ns_server_dumpstats(ns_server_t *server) {
CHECKM(isc_stdio_open(server->statsfile, "a", &fp),
"could not open statistics dump file");
ncounters = dns_stats_ncounters();
ncounters = DNS_STATS_NCOUNTERS;
fprintf(fp, "+++ Statistics Dump +++ (%lu)\n", (unsigned long)now);
for (i = 0; i < ncounters; i++)