1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-01-13 12:15:24 +01:00

38 lines
1.1 KiB
Rust
Raw Normal View History

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