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 964610f commit 61d28f4Copy full SHA for 61d28f4
src/client.rs
@@ -149,7 +149,7 @@ where
149
// Prevent CWE-400 DDOS with large HTTP Headers.
150
ensure!(
151
buf.len() < MAX_HEAD_LENGTH,
152
- "Head byte length limit exceeded"
+ "Head byte length should be less than 8kb"
153
);
154
155
// We've hit the end delimiter of the stream.
src/server.rs
@@ -356,7 +356,7 @@ where
356
357
358
359
360
361
362
0 commit comments