Fixed default table size for the HpackDecoder.
This is necessary because the remote encoder may encode fields assuming that the default size is 4096, and never send the table resize instruction. In this case, the decoder table cannot start at zero, it must start at the default of 4096. Signed-off-by: Simone Bordet <simone.bordet@gmail.com>
This commit is contained in:
parent
420ec7cc1d
commit
94c2649d7b
|
@ -50,7 +50,7 @@ public class HpackDecoder
|
|||
*/
|
||||
public HpackDecoder(int maxHeaderSize)
|
||||
{
|
||||
_context = new HpackContext(0);
|
||||
_context = new HpackContext(HpackContext.DEFAULT_MAX_TABLE_CAPACITY);
|
||||
_builder = new MetaDataBuilder(maxHeaderSize);
|
||||
_huffmanDecoder = new HuffmanDecoder();
|
||||
_integerDecoder = new NBitIntegerDecoder();
|
||||
|
|
|
@ -58,8 +58,6 @@ public class HpackDecoderTest
|
|||
public void testDecodeD3() throws Exception
|
||||
{
|
||||
HpackDecoder decoder = new HpackDecoder(8192);
|
||||
decoder.setMaxTableCapacity(HpackContext.DEFAULT_MAX_TABLE_CAPACITY);
|
||||
decoder.getHpackContext().resize(decoder.getMaxTableCapacity());
|
||||
|
||||
// First request
|
||||
String encoded = "828684410f7777772e6578616d706c652e636f6d";
|
||||
|
@ -108,8 +106,6 @@ public class HpackDecoderTest
|
|||
public void testDecodeD4() throws Exception
|
||||
{
|
||||
HpackDecoder decoder = new HpackDecoder(8192);
|
||||
decoder.setMaxTableCapacity(HpackContext.DEFAULT_MAX_TABLE_CAPACITY);
|
||||
decoder.getHpackContext().resize(decoder.getMaxTableCapacity());
|
||||
|
||||
// First request
|
||||
String encoded = "828684418cf1e3c2e5f23a6ba0ab90f4ff";
|
||||
|
|
Loading…
Reference in New Issue