1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-24 07:53:00 +01:00
actix-extras/examples/echo.rs

31 lines
917 B
Rust
Raw Normal View History

use std::{env, io};
2018-11-28 07:12:04 +01:00
use actix_http::HttpMessage;
2019-03-09 19:39:06 +01:00
use actix_http::{HttpService, Request, Response};
2018-12-11 03:08:33 +01:00
use actix_server::Server;
2018-11-28 07:12:04 +01:00
use bytes::Bytes;
2018-11-24 08:59:14 +01:00
use futures::Future;
2018-11-28 07:12:04 +01:00
use http::header::HeaderValue;
2018-12-11 03:08:33 +01:00
use log::info;
2018-11-24 08:59:14 +01:00
fn main() -> io::Result<()> {
2018-11-24 08:59:14 +01:00
env::set_var("RUST_LOG", "echo=info");
env_logger::init();
2018-12-11 03:08:33 +01:00
Server::build()
2018-11-28 07:12:04 +01:00
.bind("echo", "127.0.0.1:8080", || {
2019-03-09 19:39:06 +01:00
HttpService::build()
2018-11-28 07:12:04 +01:00
.client_timeout(1000)
.client_disconnect(1000)
2019-02-13 22:52:11 +01:00
.finish(|mut req: Request| {
req.body().limit(512).and_then(|bytes: Bytes| {
2018-11-24 08:59:14 +01:00
info!("request body: {:?}", bytes);
let mut res = Response::Ok();
res.header("x-head", HeaderValue::from_static("dummy value!"));
Ok(res.body(bytes))
})
2018-12-06 23:32:52 +01:00
})
})?
.run()
2018-11-24 08:59:14 +01:00
}