mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
update examples
This commit is contained in:
parent
fe064115ad
commit
72ac0b1629
7 changed files with 8 additions and 8 deletions
|
@ -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");
|
||||
|
|
|
@ -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");
|
||||
|
|
|
@ -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))
|
||||
|
|
|
@ -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))
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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))
|
||||
|
|
|
@ -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" }))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue