| Index: net/spdy/hpack/hpack_constants.h
|
| diff --git a/net/spdy/hpack/hpack_constants.h b/net/spdy/hpack/hpack_constants.h
|
| index bc9b39bedd1fbb34def8f5bc94cdb4a2ce9f342c..a247e405dcc66c8f1ec77f5312cc770a9b4c0722 100644
|
| --- a/net/spdy/hpack/hpack_constants.h
|
| +++ b/net/spdy/hpack/hpack_constants.h
|
| @@ -48,12 +48,12 @@ const uint32_t kDefaultHeaderTableSizeSetting = 4096;
|
|
|
| // Largest string literal an HpackDecoder/HpackEncoder will attempt to process
|
| // before returning an error.
|
| -const uint32_t kDefaultMaxStringLiteralSize = 16 * 1024;
|
| +const uint32_t kDefaultMaxStringLiteralSize = 256 * 1024;
|
|
|
| // Maximum amount of encoded header buffer HpackDecoder will retain before
|
| // returning an error.
|
| // TODO(jgraettinger): Remove with SpdyHeadersHandlerInterface switch.
|
| -const uint32_t kMaxDecodeBufferSize = 32 * 1024;
|
| +const uint32_t kMaxDecodeBufferSize = 256 * 1024;
|
|
|
| // 6.2: Flag for a string literal that is stored unmodified (i.e.,
|
| // without Huffman encoding).
|
|
|