1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-01-19 14:14:41 +01:00
actix-web/actix-http/examples/hello-world.rs

39 lines
1.2 KiB
Rust
Raw Permalink Normal View History

2021-06-17 17:57:58 +01:00
use std::{convert::Infallible, io};
2021-12-08 22:58:50 +00:00
use actix_http::{
header::HeaderValue, HttpMessage, HttpService, Request, Response, StatusCode,
};
2018-12-10 18:08:33 -08:00
use actix_server::Server;
2018-11-23 07:42:40 +03:30
#[actix_rt::main]
async fn main() -> io::Result<()> {
2021-05-06 20:24:18 +01:00
env_logger::init_from_env(env_logger::Env::new().default_filter_or("info"));
2018-11-23 07:42:40 +03:30
2018-12-10 18:08:33 -08:00
Server::build()
2021-06-17 17:57:58 +01:00
.bind("hello-world", ("127.0.0.1", 8080), || {
2019-03-09 10:39:06 -08:00
HttpService::build()
2018-11-28 09:42:04 +03:30
.client_timeout(1000)
.client_disconnect(1000)
2021-12-08 22:58:50 +00:00
.on_connect_ext(|_, ext| {
ext.insert(42u32);
})
.finish(|req: Request| async move {
2021-06-17 17:57:58 +01:00
log::info!("{:?}", req);
let mut res = Response::build(StatusCode::OK);
2021-12-08 06:01:11 +00:00
res.insert_header(("x-head", HeaderValue::from_static("dummy value!")));
2021-06-17 17:57:58 +01:00
2021-12-08 22:58:50 +00:00
let forty_two = req.extensions().get::<u32>().unwrap().to_string();
res.insert_header((
"x-forty-two",
HeaderValue::from_str(&forty_two).unwrap(),
));
2021-06-17 17:57:58 +01:00
Ok::<_, Infallible>(res.body("Hello world!"))
2018-12-06 14:32:52 -08:00
})
2019-12-02 17:33:11 +06:00
.tcp()
})?
.run()
.await
2018-11-23 07:42:40 +03:30
}