update examples

This commit is contained in:
Nikolay Kim 2021-12-20 20:04:11 +06:00
parent fe064115ad
commit 72ac0b1629
7 changed files with 8 additions and 8 deletions

View file

@ -35,7 +35,7 @@ async fn main() -> io::Result<()> {
// start server
server::ServerBuilder::new()
.bind("basic", "127.0.0.1:8443", move || {
.bind("basic", "127.0.0.1:8443", move |_| {
pipeline_factory(filter_factory(TlsAcceptor::new(tls_config.clone())))
.and_then(fn_service(|io: Io<_>| async move {
println!("New client is connected");

View file

@ -24,7 +24,7 @@ async fn main() -> io::Result<()> {
// start server
server::ServerBuilder::new()
.bind("basic", "127.0.0.1:8443", move || {
.bind("basic", "127.0.0.1:8443", move |_| {
pipeline_factory(filter_factory(SslAcceptor::new(acceptor.clone())))
.and_then(fn_service(|io: Io<_>| async move {
println!("New client is connected");

View file

@ -37,7 +37,7 @@ async fn main() -> io::Result<()> {
// start server
server::ServerBuilder::new()
.bind("basic", "127.0.0.1:8443", move || {
.bind("basic", "127.0.0.1:8443", move |_| {
HttpService::build()
.client_timeout(Seconds(1))
.disconnect_timeout(Seconds(1))

View file

@ -13,7 +13,7 @@ async fn main() -> io::Result<()> {
env_logger::init();
Server::build()
.bind("echo", "127.0.0.1:8080", || {
.bind("echo", "127.0.0.1:8080", |_| {
HttpService::build()
.client_timeout(Seconds(1))
.disconnect_timeout(Seconds(1))

View file

@ -25,7 +25,7 @@ async fn main() -> io::Result<()> {
env_logger::init();
Server::build()
.bind("echo", "127.0.0.1:8080", || {
.bind("echo", "127.0.0.1:8080", |_| {
HttpService::build().finish(handle_request)
})?
.run()

View file

@ -11,7 +11,7 @@ async fn main() -> io::Result<()> {
env_logger::init();
Server::build()
.bind("hello-world", "127.0.0.1:8080", || {
.bind("hello-world", "127.0.0.1:8080", |_| {
HttpService::build()
.client_timeout(Seconds(1))
.disconnect_timeout(Seconds(1))

View file

@ -468,7 +468,7 @@ where
///
/// #[ntex::main]
/// async fn main() -> std::io::Result<()> {
/// server::build().bind("http", "127.0.0.1:0", ||
/// server::build().bind("http", "127.0.0.1:0", |_|
/// http::HttpService::build().finish(
/// web::App::new()
/// .route("/index.html", web::get().to(|| async { "hello_world" }))
@ -498,7 +498,7 @@ where
///
/// #[ntex::main]
/// async fn main() -> std::io::Result<()> {
/// server::build().bind("http", "127.0.0.1:0", ||
/// server::build().bind("http", "127.0.0.1:0", |_|
/// http::HttpService::build().finish(
/// web::App::new()
/// .route("/index.html", web::get().to(|| async { "hello_world" }))