2021-05-06 19:24:18 +00:00
|
|
|
use std::io;
|
2019-03-09 15:37:23 +00:00
|
|
|
|
2021-12-04 19:40:47 +00:00
|
|
|
use actix_http::{
|
2022-01-19 02:09:25 +00:00
|
|
|
body::{BodyStream, MessageBody},
|
|
|
|
header, Error, HttpMessage, HttpService, Request, Response, StatusCode,
|
2021-12-04 19:40:47 +00:00
|
|
|
};
|
2018-11-28 05:45:08 +00:00
|
|
|
|
2021-12-04 19:40:47 +00:00
|
|
|
async fn handle_request(mut req: Request) -> Result<Response<impl MessageBody>, Error> {
|
2022-01-19 02:09:25 +00:00
|
|
|
let mut res = Response::build(StatusCode::OK);
|
|
|
|
|
|
|
|
if let Some(ct) = req.headers().get(header::CONTENT_TYPE) {
|
|
|
|
res.insert_header((header::CONTENT_TYPE, ct));
|
2019-11-19 12:54:19 +00:00
|
|
|
}
|
|
|
|
|
2022-01-19 02:09:25 +00:00
|
|
|
// echo request payload stream as (chunked) response body
|
|
|
|
let res = res.message_body(BodyStream::new(req.payload().take()))?;
|
2021-06-17 16:57:58 +00:00
|
|
|
|
2022-01-19 02:09:25 +00:00
|
|
|
Ok(res)
|
2018-11-28 05:45:08 +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-28 05:45:08 +00:00
|
|
|
|
2022-01-19 02:09:25 +00:00
|
|
|
actix_server::Server::build()
|
2021-06-17 16:57:58 +00:00
|
|
|
.bind("echo", ("127.0.0.1", 8080), || {
|
2022-01-19 02:09:25 +00:00
|
|
|
HttpService::build()
|
|
|
|
// handles HTTP/1.1 only
|
|
|
|
.h1(handle_request)
|
|
|
|
// No TLS
|
|
|
|
.tcp()
|
2019-03-09 15:37:23 +00:00
|
|
|
})?
|
|
|
|
.run()
|
2020-01-06 15:15:04 +00:00
|
|
|
.await
|
2018-11-28 05:45:08 +00:00
|
|
|
}
|