reduce min size of header buffers to limit impact when osutf8 cache is empty

This commit is contained in:
UbitUmarov
2024-04-02 01:27:16 +01:00
parent 6c83782d49
commit 58401238d5

View File

@@ -232,7 +232,7 @@ namespace OSHttpServer
{
HeadersSent = true;
osUTF8 osu = OSUTF8Cached.Acquire();
osUTF8 osu = OSUTF8Cached.Acquire(8 * 1024);
if (string.IsNullOrWhiteSpace(m_httpVersion))
{