mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-27 17:52:56 +01:00
deprecate HttpServer::no_http2(), update changes
This commit is contained in:
parent
5bd82d4f03
commit
85acc3f8df
11
CHANGES.md
11
CHANGES.md
@ -23,6 +23,17 @@
|
|||||||
|
|
||||||
* Panic during access without routing being set #452
|
* Panic during access without routing being set #452
|
||||||
|
|
||||||
|
### Deprecated
|
||||||
|
|
||||||
|
* `HttpServer::no_http2()` is deprecated, use `OpensslAcceptor::with_flags()` or
|
||||||
|
`RustlsAcceptor::with_flags()` instead
|
||||||
|
|
||||||
|
* `HttpServer::listen_tls()`, `HttpServer::listen_ssl()`, `HttpServer::listen_rustls()` have been
|
||||||
|
deprecated in favor of `HttpServer::listen_with()` with specific `acceptor`.
|
||||||
|
|
||||||
|
* `HttpServer::bind_tls()`, `HttpServer::bind_ssl()`, `HttpServer::bind_rustls()` have been
|
||||||
|
deprecated in favor of `HttpServer::bind_with()` with specific `acceptor`.
|
||||||
|
|
||||||
|
|
||||||
## [0.7.3] - 2018-08-01
|
## [0.7.3] - 2018-08-01
|
||||||
|
|
||||||
|
@ -181,6 +181,8 @@ where
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Disable `HTTP/2` support
|
/// Disable `HTTP/2` support
|
||||||
|
#[doc(hidden)]
|
||||||
|
#[deprecated(since = "0.7.4", note = "please use acceptor service with proper ServerFlags parama")]
|
||||||
pub fn no_http2(mut self) -> Self {
|
pub fn no_http2(mut self) -> Self {
|
||||||
self.no_http2 = true;
|
self.no_http2 = true;
|
||||||
self
|
self
|
||||||
@ -655,6 +657,7 @@ impl<H: IntoHttpHandler> Handler<StopServer> for HttpServer<H> {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fut::ok(())
|
fut::ok(())
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
@ -672,4 +675,4 @@ impl<H: IntoHttpHandler> Handler<StopServer> for HttpServer<H> {
|
|||||||
Response::reply(Ok(()))
|
Response::reply(Ok(()))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user