2022-01-31 17:30:34 +00:00
|
|
|
use std::{io, time::Duration};
|
2019-03-09 15:37:23 +00:00
|
|
|
|
2021-12-05 23:23:36 +00:00
|
|
|
use actix_http::{Error, HttpService, Request, Response, StatusCode};
|
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;
|
2022-03-10 03:12:29 +00:00
|
|
|
use tracing::info;
|
2018-11-24 07:59:14 +00:00
|
|
|
|
2020-01-06 15:15:04 +00:00
|
|
|
#[actix_rt::main]
|
|
|
|
async fn main() -> io::Result<()> {
|
2021-05-06 19:24:18 +00:00
|
|
|
env_logger::init_from_env(env_logger::Env::new().default_filter_or("info"));
|
2018-11-24 07:59:14 +00:00
|
|
|
|
2018-12-11 02:08:33 +00:00
|
|
|
Server::build()
|
2021-06-17 16:57:58 +00:00
|
|
|
.bind("echo", ("127.0.0.1", 8080), || {
|
2019-03-09 18:39:06 +00:00
|
|
|
HttpService::build()
|
2022-01-31 17:30:34 +00:00
|
|
|
.client_request_timeout(Duration::from_secs(1))
|
|
|
|
.client_disconnect_timeout(Duration::from_secs(1))
|
2022-01-19 02:09:25 +00:00
|
|
|
// handles HTTP/1.1 and HTTP/2
|
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
|
|
|
|
2022-03-10 03:12:29 +00:00
|
|
|
info!("request body: {:?}", body);
|
2021-06-17 16:57:58 +00:00
|
|
|
|
2022-01-19 02:09:25 +00:00
|
|
|
let res = Response::build(StatusCode::OK)
|
|
|
|
.insert_header(("x-head", HeaderValue::from_static("dummy value!")))
|
|
|
|
.body(body);
|
|
|
|
|
|
|
|
Ok::<_, Error>(res)
|
2018-12-06 22:32:52 +00:00
|
|
|
})
|
2022-01-19 02:09:25 +00:00
|
|
|
// No TLS
|
2019-12-02 11:33:11 +00:00
|
|
|
.tcp()
|
2019-03-09 15:37:23 +00:00
|
|
|
})?
|
|
|
|
.run()
|
2020-01-06 15:15:04 +00:00
|
|
|
.await
|
2018-11-24 07:59:14 +00:00
|
|
|
}
|