mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Switch to ntex-h2 for http/2 support (#120)
* switch server to ntex-h2 for http/2 support
This commit is contained in:
parent
08a577f730
commit
88c7fd3116
27 changed files with 879 additions and 747 deletions
|
@ -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
|
||||
|
|
|
@ -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("")),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue