Switch to ntex-h2 for http/2 support (#120)

* switch server to ntex-h2 for http/2 support
This commit is contained in:
Nikolay Kim 2022-06-27 15:28:44 +06:00 committed by GitHub
parent 08a577f730
commit 88c7fd3116
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
27 changed files with 879 additions and 747 deletions

View file

@ -15,6 +15,8 @@ pub mod error {
pub use http::header::{InvalidHeaderName, InvalidHeaderValue};
pub use http::method::InvalidMethod;
pub use http::status::InvalidStatusCode;
pub use http::uri::InvalidUri;
pub use http::Error;
}
/// Convert http::HeaderMap to a HeaderMap

View file

@ -102,8 +102,7 @@ impl Extend<HeaderValue> for Value {
where
T: IntoIterator<Item = HeaderValue>,
{
let mut iter = iter.into_iter();
while let Some(h) = iter.next() {
for h in iter.into_iter() {
self.append(h);
}
}
@ -363,6 +362,7 @@ where
Value: TryFrom<V>,
{
#[inline]
#[allow(clippy::mutable_key_type)]
fn from_iter<T: IntoIterator<Item = (N, V)>>(iter: T) -> Self {
let map = iter
.into_iter()
@ -400,7 +400,7 @@ where
impl FromIterator<HeaderValue> for Value {
fn from_iter<T: IntoIterator<Item = HeaderValue>>(iter: T) -> Self {
let mut iter = iter.into_iter();
let value = iter.next().map(|h| Value::One(h));
let value = iter.next().map(Value::One);
let mut value = match value {
Some(v) => v,
_ => Value::One(HeaderValue::from_static("")),