diff --git a/envoy/extensions/compression/gzip/decompressor/v3/gzip.proto b/envoy/extensions/compression/gzip/decompressor/v3/gzip.proto index 097531ab..0ab0d947 100644 --- a/envoy/extensions/compression/gzip/decompressor/v3/gzip.proto +++ b/envoy/extensions/compression/gzip/decompressor/v3/gzip.proto @@ -20,8 +20,9 @@ option (udpa.annotations.file_status).package_version_status = ACTIVE; message Gzip { // Value from 9 to 15 that represents the base two logarithmic of the decompressor's window size. // The decompression window size needs to be equal or larger than the compression window size. - // The default is 15 per zlib's manual. For more details about this parameter, please refer to - // zlib manual > inflateInit2. + // The default is 12 to match the default in the + // :ref:`gzip compressor `. + // For more details about this parameter, please refer to `zlib manual `_ > inflateInit2. google.protobuf.UInt32Value window_bits = 1 [(validate.rules).uint32 = {lte: 15 gte: 9}]; // Value for zlib's decompressor output buffer. If not set, defaults to 4096.