add option to disable http2 upgrade (#1292)

Co-authored-by: Sean McArthur <sean@seanmonstar.com>
This commit is contained in:
Mohamed Daahir
2021-06-25 04:00:06 +03:00
committed by GitHub
parent d9308f1b26
commit bccefe7486
2 changed files with 46 additions and 13 deletions

View File

@@ -68,6 +68,12 @@ pub struct ClientBuilder {
config: Config, config: Config,
} }
enum HttpVersionPref {
Http1,
Http2,
All,
}
struct Config { struct Config {
// NOTE: When adding a new field, update `fmt::Debug for ClientBuilder` // NOTE: When adding a new field, update `fmt::Debug for ClientBuilder`
accepts: Accepts, accepts: Accepts,
@@ -94,7 +100,7 @@ struct Config {
tls_built_in_root_certs: bool, tls_built_in_root_certs: bool,
#[cfg(feature = "__tls")] #[cfg(feature = "__tls")]
tls: TlsBackend, tls: TlsBackend,
http2_only: bool, http_version_pref: HttpVersionPref,
http1_title_case_headers: bool, http1_title_case_headers: bool,
http2_initial_stream_window_size: Option<u32>, http2_initial_stream_window_size: Option<u32>,
http2_initial_connection_window_size: Option<u32>, http2_initial_connection_window_size: Option<u32>,
@@ -153,7 +159,7 @@ impl ClientBuilder {
identity: None, identity: None,
#[cfg(feature = "__tls")] #[cfg(feature = "__tls")]
tls: TlsBackend::default(), tls: TlsBackend::default(),
http2_only: false, http_version_pref: HttpVersionPref::All,
http1_title_case_headers: false, http1_title_case_headers: false,
http2_initial_stream_window_size: None, http2_initial_stream_window_size: None,
http2_initial_connection_window_size: None, http2_initial_connection_window_size: None,
@@ -223,12 +229,18 @@ impl ClientBuilder {
#[cfg(feature = "native-tls-alpn")] #[cfg(feature = "native-tls-alpn")]
{ {
if config.http2_only { match config.http_version_pref {
HttpVersionPref::Http1 => {
tls.request_alpns(&["http/1.1"]);
}
HttpVersionPref::Http2 => {
tls.request_alpns(&["h2"]); tls.request_alpns(&["h2"]);
} else { }
HttpVersionPref::All => {
tls.request_alpns(&["h2", "http/1.1"]); tls.request_alpns(&["h2", "http/1.1"]);
} }
} }
}
#[cfg(feature = "native-tls")] #[cfg(feature = "native-tls")]
{ {
@@ -282,11 +294,17 @@ impl ClientBuilder {
use crate::tls::NoVerifier; use crate::tls::NoVerifier;
let mut tls = rustls::ClientConfig::new(); let mut tls = rustls::ClientConfig::new();
if config.http2_only { match config.http_version_pref {
HttpVersionPref::Http1 => {
tls.set_protocols(&["http/1.1".into()]);
}
HttpVersionPref::Http2 => {
tls.set_protocols(&["h2".into()]); tls.set_protocols(&["h2".into()]);
} else { }
HttpVersionPref::All => {
tls.set_protocols(&["h2".into(), "http/1.1".into()]); tls.set_protocols(&["h2".into(), "http/1.1".into()]);
} }
}
#[cfg(feature = "rustls-tls-webpki-roots")] #[cfg(feature = "rustls-tls-webpki-roots")]
if config.tls_built_in_root_certs { if config.tls_built_in_root_certs {
tls.root_store tls.root_store
@@ -336,7 +354,7 @@ impl ClientBuilder {
connector.set_verbose(config.connection_verbose); connector.set_verbose(config.connection_verbose);
let mut builder = hyper::Client::builder(); let mut builder = hyper::Client::builder();
if config.http2_only { if matches!(config.http_version_pref, HttpVersionPref::Http2) {
builder.http2_only(true); builder.http2_only(true);
} }
@@ -737,9 +755,15 @@ impl ClientBuilder {
self self
} }
/// Only use HTTP/1.
pub fn http1_only(mut self) -> ClientBuilder {
self.config.http_version_pref = HttpVersionPref::Http1;
self
}
/// Only use HTTP/2. /// Only use HTTP/2.
pub fn http2_prior_knowledge(mut self) -> ClientBuilder { pub fn http2_prior_knowledge(mut self) -> ClientBuilder {
self.config.http2_only = true; self.config.http_version_pref = HttpVersionPref::Http2;
self self
} }
@@ -1339,7 +1363,11 @@ impl Config {
f.field("http1_title_case_headers", &true); f.field("http1_title_case_headers", &true);
} }
if self.http2_only { if matches!(self.http_version_pref, HttpVersionPref::Http1) {
f.field("http1_only", &true);
}
if matches!(self.http_version_pref, HttpVersionPref::Http2) {
f.field("http2_prior_knowledge", &true); f.field("http2_prior_knowledge", &true);
} }

View File

@@ -404,6 +404,11 @@ impl ClientBuilder {
self.with_inner(|inner| inner.http1_title_case_headers()) self.with_inner(|inner| inner.http1_title_case_headers())
} }
/// Only use HTTP/1.
pub fn http1_only(self) -> ClientBuilder {
self.with_inner(|inner| inner.http1_only())
}
/// Only use HTTP/2. /// Only use HTTP/2.
pub fn http2_prior_knowledge(self) -> ClientBuilder { pub fn http2_prior_knowledge(self) -> ClientBuilder {
self.with_inner(|inner| inner.http2_prior_knowledge()) self.with_inner(|inner| inner.http2_prior_knowledge())