From e4e6a609e32082eb12b9d5103f30b39f89f59f6a Mon Sep 17 00:00:00 2001 From: Jacob Rothstein Date: Mon, 23 Nov 2020 14:56:44 -0800 Subject: [PATCH] add proxy-connection header --- src/headers/constants.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/headers/constants.rs b/src/headers/constants.rs index 7bfb0e62..43002458 100644 --- a/src/headers/constants.rs +++ b/src/headers/constants.rs @@ -135,6 +135,9 @@ pub const PROXY_AUTHENTICATE: HeaderName = HeaderName::from_lowercase_str("proxy /// The `Proxy-Authorization` Header pub const PROXY_AUTHORIZATION: HeaderName = HeaderName::from_lowercase_str("proxy-authorization"); +/// The `Proxy-Connection` Header +pub const PROXY_CONNECTION: HeaderName = HeaderName::from_lowercase_str("proxy-connection"); + /// The `Referer` Header pub const REFERER: HeaderName = HeaderName::from_lowercase_str("referer");