1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-24 00:21:08 +01:00
actix-web/actix-http/examples/echo.rs

39 lines
1.3 KiB
Rust
Raw Normal View History

2022-01-31 18:30:34 +01:00
use std::{io, time::Duration};
2021-12-06 00:23:36 +01:00
use actix_http::{Error, HttpService, Request, Response, StatusCode};
2018-12-11 03:08:33 +01:00
use actix_server::Server;
2019-03-17 09:02:51 +01:00
use bytes::BytesMut;
2021-03-11 04:48:38 +01:00
use futures_util::StreamExt as _;
2018-11-28 07:12:04 +01:00
use http::header::HeaderValue;
2022-03-10 04:12:29 +01:00
use tracing::info;
2018-11-24 08:59:14 +01:00
#[actix_rt::main]
async fn main() -> io::Result<()> {
2021-05-06 21:24:18 +02:00
env_logger::init_from_env(env_logger::Env::new().default_filter_or("info"));
2018-11-24 08:59:14 +01:00
2018-12-11 03:08:33 +01:00
Server::build()
2021-06-17 18:57:58 +02:00
.bind("echo", ("127.0.0.1", 8080), || {
2019-03-09 19:39:06 +01:00
HttpService::build()
2022-01-31 18:30:34 +01:00
.client_request_timeout(Duration::from_secs(1))
.client_disconnect_timeout(Duration::from_secs(1))
// handles HTTP/1.1 and HTTP/2
2020-02-27 03:10:55 +01:00
.finish(|mut req: Request| async move {
let mut body = BytesMut::new();
while let Some(item) = req.payload().next().await {
body.extend_from_slice(&item?);
2019-11-19 13:54:19 +01:00
}
2020-02-27 03:10:55 +01:00
2024-08-18 15:33:28 +02:00
info!("request body: {body:?}");
2021-06-17 18:57:58 +02:00
let res = Response::build(StatusCode::OK)
.insert_header(("x-head", HeaderValue::from_static("dummy value!")))
.body(body);
Ok::<_, Error>(res)
2018-12-06 23:32:52 +01:00
})
2024-08-18 15:33:28 +02:00
.tcp() // No TLS
})?
.run()
.await
2018-11-24 08:59:14 +01:00
}