mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-23 16:21:06 +01:00
better name
This commit is contained in:
parent
6974213036
commit
2eb3ad0de3
@ -95,7 +95,7 @@ impl PayloadWriter for PayloadType {
|
||||
}
|
||||
|
||||
enum Decoder {
|
||||
Zlib(DeflateDecoder<BytesWriter>),
|
||||
Deflate(DeflateDecoder<BytesWriter>),
|
||||
Gzip(Option<GzDecoder<Wrapper>>),
|
||||
Br(BrotliDecoder<BytesWriter>),
|
||||
Identity,
|
||||
@ -148,7 +148,7 @@ impl EncodedPayload {
|
||||
let dec = match enc {
|
||||
ContentEncoding::Br => Decoder::Br(
|
||||
BrotliDecoder::new(BytesWriter::default())),
|
||||
ContentEncoding::Deflate => Decoder::Zlib(
|
||||
ContentEncoding::Deflate => Decoder::Deflate(
|
||||
DeflateDecoder::new(BytesWriter::default())),
|
||||
ContentEncoding::Gzip => Decoder::Gzip(None),
|
||||
_ => Decoder::Identity,
|
||||
@ -212,7 +212,7 @@ impl PayloadWriter for EncodedPayload {
|
||||
}
|
||||
}
|
||||
},
|
||||
Decoder::Zlib(ref mut decoder) => {
|
||||
Decoder::Deflate(ref mut decoder) => {
|
||||
match decoder.try_finish() {
|
||||
Ok(_) => {
|
||||
let b = decoder.get_mut().buf.take().freeze();
|
||||
@ -291,7 +291,7 @@ impl PayloadWriter for EncodedPayload {
|
||||
}
|
||||
}
|
||||
|
||||
Decoder::Zlib(ref mut decoder) => {
|
||||
Decoder::Deflate(ref mut decoder) => {
|
||||
if decoder.write(&data).is_ok() {
|
||||
if decoder.flush().is_ok() {
|
||||
let b = decoder.get_mut().buf.take().freeze();
|
||||
|
Loading…
Reference in New Issue
Block a user