From 044aea3ce950be2187bfb66be203695ae0626df3 Mon Sep 17 00:00:00 2001 From: Francis Dupont Date: Fri, 29 Aug 2025 22:47:11 +0200 Subject: [PATCH] [#3880] Doubled buffer size --- src/hooks/d2/gss_tsig/tkey_exchange.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/d2/gss_tsig/tkey_exchange.cc b/src/hooks/d2/gss_tsig/tkey_exchange.cc index 173ae4b06a..c79aa15727 100644 --- a/src/hooks/d2/gss_tsig/tkey_exchange.cc +++ b/src/hooks/d2/gss_tsig/tkey_exchange.cc @@ -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; }