mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-31 06:25:31 +00:00
[master] accept >4g max-{,a}cache-size
3506. [func] When setting "max-cache-size" and "max-acache-size", the keyword "unlimited" is no longer defined as equal to 4 gigabytes (except on 32-bit platforms); it means literally unlimited. [RT #32358] 3505. [bug] When setting "max-cache-size" and "max-acache-size", larger values than 4 gigabytes could not be set explicitly, though larger sizes were available when setting cache size to 0. This has been corrected; the full range is now available. [RT #32358]
This commit is contained in:
@@ -4164,9 +4164,8 @@ water(void *arg, int mark) {
|
||||
}
|
||||
|
||||
void
|
||||
dns_adb_setadbsize(dns_adb_t *adb, isc_uint32_t size) {
|
||||
isc_uint32_t hiwater;
|
||||
isc_uint32_t lowater;
|
||||
dns_adb_setadbsize(dns_adb_t *adb, size_t size) {
|
||||
size_t hiwater, lowater;
|
||||
|
||||
INSIST(DNS_ADB_VALID(adb));
|
||||
|
||||
|
Reference in New Issue
Block a user