From 3b24311db6664407b34cce4080b48d18ff2eb997 Mon Sep 17 00:00:00 2001 From: Adam Date: Fri, 26 Oct 2012 12:57:25 -0400 Subject: [PATCH] Sometimes zone transfers can be really big --- src/dns.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dns.cpp b/src/dns.cpp index faafd199e..fdcfee881 100644 --- a/src/dns.cpp +++ b/src/dns.cpp @@ -550,7 +550,7 @@ bool DNSManager::TCPSocket::Client::ProcessWrite() { try { - unsigned char buffer[524]; + unsigned char buffer[65535]; unsigned short len = packet->Pack(buffer + 2, sizeof(buffer) - 2); short s = htons(len);