]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Increase quota limits for dispatchers.
authorBob Halley <source@isc.org>
Wed, 1 Dec 1999 00:35:28 +0000 (00:35 +0000)
committerBob Halley <source@isc.org>
Wed, 1 Dec 1999 00:35:28 +0000 (00:35 +0000)
lib/dns/resolver.c

index f858abe8601fb500d78a915f2afd11103262244e..b7790003d59baadb2722b15a39248066f2cd782b 100644 (file)
@@ -3180,7 +3180,7 @@ dns_resolver_create(dns_view_t *view,
                }
                result = dns_dispatch_create(res->mctx, res->udpsocket4,
                                             res->buckets[0].task, 4096,
-                                            50, 50, 14, &res->dispatch4);
+                                            1000, 32768, 14, &res->dispatch4);
                if (result != ISC_R_SUCCESS)
                        goto cleanup_udpsocket4;
        }
@@ -3201,7 +3201,7 @@ dns_resolver_create(dns_view_t *view,
                        goto cleanup_dispatch4;
                result = dns_dispatch_create(res->mctx, res->udpsocket6,
                                             res->buckets[0].task, 4096, 
-                                            50, 50, 14, &res->dispatch6);
+                                            1000, 32768, 14, &res->dispatch6);
                if (result != ISC_R_SUCCESS)
                        goto cleanup_udpsocket6;
        }