diff options
author | Josh Matthews <josh@joshmatthews.net> | 2018-12-21 19:01:47 -0500 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2019-01-15 16:04:45 -0500 |
commit | 6404a0ef530a28b30c8a52fe55c34cc45204ca3b (patch) | |
tree | c45f0e17beb1a27c4dae8d7e724a559abb1cbd86 /components/net/lib.rs | |
parent | 2cf9a00c9983bf23eff23d56321973d36a14f977 (diff) | |
download | servo-6404a0ef530a28b30c8a52fe55c34cc45204ca3b.tar.gz servo-6404a0ef530a28b30c8a52fe55c34cc45204ca3b.zip |
Redesign network response decoding to avoid creating decoders before some content is present.
Diffstat (limited to 'components/net/lib.rs')
-rw-r--r-- | components/net/lib.rs | 1 |
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; |