From: Francis Dupont Date: Fri, 29 Aug 2025 20:47:11 +0000 (+0200) Subject: [#3880] Doubled buffer size X-Git-Tag: Kea-3.1.2~51 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=17887c4ac7289e92dbc68e628b1ab930f906695b;p=thirdparty%2Fkea.git [#3880] Doubled buffer size --- 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; }