We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ea56b3 commit 1d19605Copy full SHA for 1d19605
web-transport-proto/src/qpack.rs
@@ -207,7 +207,7 @@ impl Headers {
207
+-------------------------------+
208
*/
209
210
- encode_prefix(buf, 4, 0b0111, name);
+ encode_prefix(buf, 4, 0b0101, name);
211
encode_prefix(buf, 7, 0b0, value.len());
212
213
buf.put_slice(value.as_bytes());
@@ -227,7 +227,7 @@ impl Headers {
227
228
229
230
- encode_prefix(buf, 3, 0b00110, name.len());
+ encode_prefix(buf, 3, 0b00100, name.len());
231
buf.put_slice(name.as_bytes());
232
233
0 commit comments