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

782. [feature] Implement the serial-query-rate option.

This commit is contained in:
Brian Wellington
2001-03-19 22:34:14 +00:00
parent 4c03e69ab8
commit 54d64c7994
7 changed files with 71 additions and 7 deletions

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: server.c,v 1.306 2001/03/16 22:59:31 bwelling Exp $ */
/* $Id: server.c,v 1.307 2001/03/19 22:34:06 bwelling Exp $ */
#include <config.h>
@@ -1648,6 +1648,11 @@ load_configuration(const char *filename, ns_server_t *server,
INSIST(result == ISC_R_SUCCESS);
dns_zonemgr_settransfersperns(server->zonemgr, cfg_obj_asuint32(obj));
obj = NULL;
result = ns_config_get(maps, "serial-query-rate", &obj);
INSIST(result == ISC_R_SUCCESS);
dns_zonemgr_setserialqueryrate(server->zonemgr, cfg_obj_asuint32(obj));
/*
* Determine which port to use for listening for incoming connections.
*/