add vary header, first draft

This commit is contained in:
Rohan Prinja
2014-12-12 15:34:43 +05:30
parent 5e560cb1c1
commit 258e739ef8
3 changed files with 72 additions and 2 deletions

View File

@@ -24,6 +24,7 @@ pub use self::location::Location;
pub use self::transfer_encoding::TransferEncoding;
pub use self::upgrade::Upgrade;
pub use self::user_agent::UserAgent;
pub use self::vary::Vary;
pub use self::server::Server;
pub use self::set_cookie::SetCookie;
@@ -132,4 +133,7 @@ pub mod upgrade;
/// Exposes the UserAgent header.
pub mod user_agent;
/// Exposes the Vary header.
pub mod vary;
pub mod util;