-
-
Notifications
You must be signed in to change notification settings - Fork 316
Closed
Description
I'd like to make a PR to uncomment the setter for header_table_size
, found here:
Lines 124 to 128 in 87969c1
/* | |
pub fn set_header_table_size(&mut self, size: Option<u32>) { | |
self.header_table_size = size; | |
} | |
*/ |
When playing around with the setter I found out that connections would sometimes fail the following check, Since the decoder's size is never updated from the default DEFAULT_SETTINGS_HEADER_TABLE_SIZE
.
Lines 256 to 258 in 88b0789
if new_size > self.last_max_update { | |
return Err(DecoderError::InvalidMaxDynamicSize); | |
} |
Would this be the place to fix that?
Metadata
Metadata
Assignees
Labels
No labels