1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-07-12 08:46:16 +00:00
actix-web/actix-http/examples/echo.rs

41 lines
1.2 KiB
Rust
Raw Normal View History

use std::{env, io};
use actix_http::{http::StatusCode, Error, HttpService, Request, Response};
2018-12-11 02:08:33 +00:00
use actix_server::Server;
2019-03-17 08:02:51 +00:00
use bytes::BytesMut;
2021-03-11 03:48:38 +00:00
use futures_util::StreamExt as _;
2018-11-28 06:12:04 +00:00
use http::header::HeaderValue;
2018-12-11 02:08:33 +00:00
use log::info;
2018-11-24 07:59:14 +00:00
#[actix_rt::main]
async fn main() -> io::Result<()> {
2018-11-24 07:59:14 +00:00
env::set_var("RUST_LOG", "echo=info");
env_logger::init();
2018-12-11 02:08:33 +00:00
Server::build()
2018-11-28 06:12:04 +00:00
.bind("echo", "127.0.0.1:8080", || {
2019-03-09 18:39:06 +00:00
HttpService::build()
2018-11-28 06:12:04 +00:00
.client_timeout(1000)
.client_disconnect(1000)
2020-02-27 02:10:55 +00: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 12:54:19 +00:00
}
2020-02-27 02:10:55 +00:00
info!("request body: {:?}", body);
Ok::<_, Error>(
Response::build(StatusCode::OK)
2021-01-15 02:11:10 +00:00
.insert_header((
"x-head",
HeaderValue::from_static("dummy value!"),
))
2020-02-27 02:10:55 +00:00
.body(body),
)
2018-12-06 22:32:52 +00:00
})
2019-12-02 11:33:11 +00:00
.tcp()
})?
.run()
.await
2018-11-24 07:59:14 +00:00
}