1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-06-26 18:37:41 +02:00

add path and query extractors

This commit is contained in:
Nikolay Kim
2018-03-26 15:58:30 -07:00
parent a56e5113ee
commit 68cf32e848
9 changed files with 290 additions and 3 deletions

View File

@ -549,6 +549,7 @@ impl Reader {
msg
};
// https://tools.ietf.org/html/rfc7230#section-3.3.3
let decoder = if has_te && chunked(&msg.get_mut().headers)? {
// Chunked encoding
Some(Decoder::chunked())