For now, this adds `client::Config::no_proto`, `server::Http::no_proto`, and `server::Server::no_proto` to skip tokio-proto implementations, and use an internal dispatch system instead. `Http::no_proto` is similar to `Http::bind_connection`, but returns a `Connection` that is a `Future` to drive HTTP with the provided service. Any errors prior to parsing a request, and after delivering a response (but before flush the response body) will be returned from this future. See #1342 for more.
39 lines
1.0 KiB
Rust
39 lines
1.0 KiB
Rust
#![deny(warnings)]
|
|
extern crate hyper;
|
|
extern crate futures;
|
|
extern crate pretty_env_logger;
|
|
|
|
use futures::future::FutureResult;
|
|
|
|
use hyper::header::{ContentLength, ContentType};
|
|
use hyper::server::{Http, Service, Request, Response};
|
|
|
|
static PHRASE: &'static [u8] = b"Hello World!";
|
|
|
|
struct Hello;
|
|
|
|
impl Service for Hello {
|
|
type Request = Request;
|
|
type Response = Response;
|
|
type Error = hyper::Error;
|
|
type Future = FutureResult<Response, hyper::Error>;
|
|
fn call(&self, _req: Request) -> Self::Future {
|
|
futures::future::ok(
|
|
Response::new()
|
|
.with_header(ContentLength(PHRASE.len() as u64))
|
|
.with_header(ContentType::plaintext())
|
|
.with_body(PHRASE)
|
|
)
|
|
}
|
|
|
|
}
|
|
|
|
fn main() {
|
|
pretty_env_logger::init().unwrap();
|
|
let addr = "127.0.0.1:3000".parse().unwrap();
|
|
let mut server = Http::new().bind(&addr, || Ok(Hello)).unwrap();
|
|
server.no_proto();
|
|
println!("Listening on http://{} with 1 thread.", server.local_addr().unwrap());
|
|
server.run().unwrap();
|
|
}
|