Merge pull request #491 from pyfisch/ifrangeheader

feat(headers): Add If-Range header
This commit is contained in:
Sean McArthur
2015-04-30 15:05:52 -07:00
2 changed files with 76 additions and 1 deletions

View File

@@ -34,6 +34,7 @@ pub use self::if_match::IfMatch;
pub use self::if_modified_since::IfModifiedSince;
pub use self::if_none_match::IfNoneMatch;
pub use self::if_unmodified_since::IfUnmodifiedSince;
pub use self::if_range::IfRange;
pub use self::last_modified::LastModified;
pub use self::location::Location;
pub use self::pragma::Pragma;
@@ -316,10 +317,11 @@ mod expect;
mod expires;
mod host;
mod if_match;
mod last_modified;
mod if_modified_since;
mod if_none_match;
mod if_range;
mod if_unmodified_since;
mod last_modified;
mod location;
mod pragma;
mod referer;