]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Add doc reference to oversized chunk message 14561/head
authorJosh Soref <2119212+jsoref@users.noreply.github.com>
Thu, 15 Aug 2024 22:12:49 +0000 (18:12 -0400)
committerJosh Soref <2119212+jsoref@users.noreply.github.com>
Thu, 15 Aug 2024 22:12:49 +0000 (18:12 -0400)
pdns/dnspacket.cc

index e926a658b408b59eb30197a46ec73fea56847751..324399cd3ca886a73a8987b28bc165b5f6f6d42d 100644 (file)
@@ -353,7 +353,7 @@ void DNSPacket::wrapup(bool throwsOnTruncation)
         pos->dr.getContent()->toPacket(pw);
         if(pw.size() + optsize > (d_tcp ? 65535 : getMaxReplyLen())) {
           if (throwsOnTruncation) {
-            throw PDNSException("attempt to write an oversized chunk");
+            throw PDNSException("attempt to write an oversized chunk, see https://docs.powerdns.com/authoritative/settings.html#workaround-11804");
           }
           pw.rollback();
           pw.truncate();