aboutsummaryrefslogtreecommitdiffstats
path: root/components/net/lib.rs
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2019-01-15 16:06:35 -0500
committerGitHub <noreply@github.com>2019-01-15 16:06:35 -0500
commit4f45eea1250b0239704be774db23a14e54606464 (patch)
tree37d279708adc161864c64daa8f3791aa249dc7f0 /components/net/lib.rs
parentfde83f733defe87c5450a59ab3d7bfa2bdc4a38a (diff)
parent6404a0ef530a28b30c8a52fe55c34cc45204ca3b (diff)
downloadservo-4f45eea1250b0239704be774db23a14e54606464.tar.gz
servo-4f45eea1250b0239704be774db23a14e54606464.zip
Auto merge of #22616 - jdm:google-decode, r=nox
Fix brotli decoding This replaces our current decoding setup by https://github.com/seanmonstar/reqwest/blob/master/src/async_impl/decoder.rs, and integrates brotli and deflate decoding to maintain our existing support. --- - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] These changes fix #22228 - [x] There are tests for these changes <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/22616) <!-- Reviewable:end -->
Diffstat (limited to 'components/net/lib.rs')
-rw-r--r--components/net/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/components/net/lib.rs b/components/net/lib.rs
index d5943fa380c..fb3c6fff78b 100644
--- a/components/net/lib.rs
+++ b/components/net/lib.rs
@@ -21,6 +21,7 @@ pub mod connector;
pub mod cookie;
pub mod cookie_storage;
mod data_loader;
+mod decoder;
pub mod filemanager_thread;
mod hosts;
pub mod hsts;