2018-11-28 05:45:08 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
|
|
|
extern crate env_logger;
|
|
|
|
|
|
|
|
extern crate actix_http;
|
|
|
|
extern crate actix_net;
|
|
|
|
extern crate bytes;
|
2018-11-28 06:12:04 +00:00
|
|
|
extern crate futures;
|
2018-11-28 05:45:08 +00:00
|
|
|
|
2018-11-28 06:12:04 +00:00
|
|
|
use actix_http::http::HeaderValue;
|
|
|
|
use actix_http::HttpMessage;
|
|
|
|
use actix_http::{h1, Error, Request, Response};
|
2018-11-28 05:45:08 +00:00
|
|
|
use actix_net::server::Server;
|
|
|
|
use actix_net::service::NewServiceExt;
|
2018-11-28 06:12:04 +00:00
|
|
|
use bytes::Bytes;
|
2018-11-28 05:45:08 +00:00
|
|
|
use futures::Future;
|
|
|
|
use std::env;
|
|
|
|
|
2018-11-28 06:12:04 +00:00
|
|
|
fn handle_request(_req: Request) -> impl Future<Item = Response, Error = Error> {
|
|
|
|
_req.body().limit(512).from_err().and_then(|bytes: Bytes| {
|
|
|
|
info!("request body: {:?}", bytes);
|
|
|
|
let mut res = Response::Ok();
|
|
|
|
res.header("x-head", HeaderValue::from_static("dummy value!"));
|
|
|
|
Ok(res.body(bytes))
|
|
|
|
})
|
2018-11-28 05:45:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
env::set_var("RUST_LOG", "echo=info");
|
|
|
|
env_logger::init();
|
|
|
|
|
2018-11-28 06:12:04 +00:00
|
|
|
Server::new()
|
|
|
|
.bind("echo", "127.0.0.1:8080", || {
|
|
|
|
h1::H1Service::build()
|
|
|
|
.client_timeout(1000)
|
|
|
|
.client_disconnect(1000)
|
|
|
|
.server_hostname("localhost")
|
|
|
|
.finish(|_req: Request| handle_request(_req))
|
|
|
|
.map(|_| ())
|
|
|
|
}).unwrap()
|
|
|
|
.run();
|
2018-11-28 05:45:08 +00:00
|
|
|
}
|