Currently headers are exported at many places. For example you can access `Transfer-Encoding` header at `header`, `header::common` and `header::common::transfer_encoding`. Per discussion on IRC with @seanmonstar and @reem, all contents of headers will be exposed at `header` directly. Parsing utilities will be exposed at `header::parsing`. Header macros can now be used from other crates. This breaks much code using headers. It should use everything it needs directly from `header::`, encodings are exposed at `header::Encoding::`, connection options are exposed at `header::ConnectionOption`.
58 lines
1.6 KiB
Rust
58 lines
1.6 KiB
Rust
#![allow(unstable)]
|
|
extern crate hyper;
|
|
#[macro_use] extern crate log;
|
|
|
|
use std::io::util::copy;
|
|
use std::io::net::ip::Ipv4Addr;
|
|
|
|
use hyper::{Get, Post};
|
|
use hyper::header::ContentLength;
|
|
use hyper::server::{Server, Request, Response};
|
|
use hyper::uri::RequestUri::AbsolutePath;
|
|
|
|
macro_rules! try_return(
|
|
($e:expr) => {{
|
|
match $e {
|
|
Ok(v) => v,
|
|
Err(e) => { error!("Error: {}", e); return; }
|
|
}
|
|
}}
|
|
);
|
|
|
|
fn echo(mut req: Request, mut res: Response) {
|
|
match req.uri {
|
|
AbsolutePath(ref path) => match (&req.method, path.as_slice()) {
|
|
(&Get, "/") | (&Get, "/echo") => {
|
|
let out = b"Try POST /echo";
|
|
|
|
res.headers_mut().set(ContentLength(out.len() as u64));
|
|
let mut res = try_return!(res.start());
|
|
try_return!(res.write(out));
|
|
try_return!(res.end());
|
|
return;
|
|
},
|
|
(&Post, "/echo") => (), // fall through, fighting mutable borrows
|
|
_ => {
|
|
*res.status_mut() = hyper::NotFound;
|
|
try_return!(res.start().and_then(|res| res.end()));
|
|
return;
|
|
}
|
|
},
|
|
_ => {
|
|
try_return!(res.start().and_then(|res| res.end()));
|
|
return;
|
|
}
|
|
};
|
|
|
|
let mut res = try_return!(res.start());
|
|
try_return!(copy(&mut req, &mut res));
|
|
try_return!(res.end());
|
|
}
|
|
|
|
fn main() {
|
|
let server = Server::http(Ipv4Addr(127, 0, 0, 1), 1337);
|
|
let mut listening = server.listen(echo).unwrap();
|
|
println!("Listening on http://127.0.0.1:1337");
|
|
listening.await();
|
|
}
|