2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 13:38:26 +00:00

Use documented default value for max-transfer-time-in

This commit is contained in:
Andreas Gustafsson 1999-12-01 18:31:09 +00:00
parent 0666859124
commit e6428e3af6

View File

@ -15,7 +15,7 @@
* SOFTWARE.
*/
/* $Id: zone.c,v 1.38 1999/12/01 17:59:22 brister Exp $ */
/* $Id: zone.c,v 1.39 1999/12/01 18:31:09 gson Exp $ */
#include <config.h>
@ -67,7 +67,7 @@
#define DEFAULT_REFRESH 900 /*XXX*/
#define DEFAULT_RETRY 300 /*XXX*/
#define MAX_XFER_TIME 3600 /*XXX*/
#define MAX_XFER_TIME (2*3600) /* Documented default is 2 hours. */
#define RANGE(a, b, c) (((a) < (b)) ? (b) : ((a) < (c) ? (a) : (c)))