]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Use documented default value for max-transfer-time-in
authorAndreas Gustafsson <source@isc.org>
Wed, 1 Dec 1999 18:31:09 +0000 (18:31 +0000)
committerAndreas Gustafsson <source@isc.org>
Wed, 1 Dec 1999 18:31:09 +0000 (18:31 +0000)
lib/dns/zone.c

index 4f87239467742bbebe080fa0e038a08e34b849fd..8ed088611a9677859a695df52cce450d8b9da457 100644 (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)))