]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#3880] Doubled buffer size
authorFrancis Dupont <fdupont@isc.org>
Fri, 29 Aug 2025 20:47:11 +0000 (22:47 +0200)
committerFrancis Dupont <fdupont@isc.org>
Wed, 10 Sep 2025 16:26:02 +0000 (18:26 +0200)
src/hooks/d2/gss_tsig/tkey_exchange.cc

index 173ae4b06a325518ad7dcb210fc8cba8a77a035c..c79aa15727147232e32ab34114de9922ed9c4c4d 100644 (file)
@@ -26,7 +26,7 @@ namespace {
 // OutputBuffer objects are pre-allocated before data is written to them.
 // This is a default number of bytes for the buffers we create within
 // TKeyExchange class.
-const size_t DEFAULT_BUFFER_SIZE = 4096;
+const size_t DEFAULT_BUFFER_SIZE = 8192;
 
 }