Move kDefaultMaxUncompressedHeaderSize to http_constants.
No behavior change. not protected.
PiperOrigin-RevId: 325051193
Change-Id: Icdd50e71bffbde55aaf71fa3d771f2ad03b5d649
diff --git a/quic/core/http/http_constants.h b/quic/core/http/http_constants.h
index 285d379..8a3436c 100644
--- a/quic/core/http/http_constants.h
+++ b/quic/core/http/http_constants.h
@@ -38,6 +38,10 @@
// SETTINGS_QPACK_MAX_TABLE_CAPACITY.
const QuicByteCount kDefaultQpackMaxDynamicTableCapacity = 64 * 1024; // 64 KB
+// Default limit on the size of uncompressed headers,
+// communicated via SETTINGS_MAX_HEADER_LIST_SIZE.
+const QuicByteCount kDefaultMaxUncompressedHeaderSize = 16 * 1024; // 16 KB
+
// Default limit on number of blocked streams, communicated via
// SETTINGS_QPACK_BLOCKED_STREAMS.
const uint64_t kDefaultMaximumBlockedStreams = 100;