1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-24 16:02:59 +01:00
actix-extras/examples/hello-world.rs

30 lines
859 B
Rust
Raw Normal View History

2018-11-23 05:12:40 +01:00
use actix_http::{h1, Response};
2018-12-11 03:08:33 +01:00
use actix_server::Server;
use actix_service::NewService;
2018-11-23 05:12:40 +01:00
use futures::future;
2018-11-28 07:12:04 +01:00
use http::header::HeaderValue;
2018-12-11 03:08:33 +01:00
use log::info;
2018-11-23 05:12:40 +01:00
use std::env;
fn main() {
env::set_var("RUST_LOG", "hello_world=info");
env_logger::init();
2018-12-11 03:08:33 +01:00
Server::build()
2018-11-28 07:12:04 +01:00
.bind("hello-world", "127.0.0.1:8080", || {
h1::H1Service::build()
.client_timeout(1000)
.client_disconnect(1000)
.server_hostname("localhost")
.finish(|_req| {
info!("{:?}", _req);
let mut res = Response::Ok();
res.header("x-head", HeaderValue::from_static("dummy value!"));
future::ok::<_, ()>(res.body("Hello world!"))
2018-12-06 23:32:52 +01:00
})
.map(|_| ())
})
.unwrap()
2018-11-28 07:12:04 +01:00
.run();
2018-11-23 05:12:40 +01:00
}