implementation

This commit is contained in:
Sean McArthur
2014-09-01 18:39:24 -07:00
parent 8865516816
commit c905111f8c
18 changed files with 3744 additions and 0 deletions

40
examples/server.rs Normal file
View File

@@ -0,0 +1,40 @@
extern crate hyper;
extern crate debug;
use std::io::{IoResult};
use std::io::util::copy;
use std::io::net::ip::Ipv4Addr;
use hyper::method::{Get, Post};
use hyper::server::{Server, Handler, Request, Response};
struct Echo;
impl Handler for Echo {
fn handle(&mut self, mut req: Request, mut res: Response) -> IoResult<()> {
match &req.uri {
&hyper::uri::AbsolutePath(ref path) => match (&req.method, path.as_slice()) {
(&Get, "/") | (&Get, "/echo") => {
try!(res.write_str("Try POST /echo"));
return res.end();
},
(&Post, "/echo") => (), // fall through, fighting mutable borrows
_ => {
res.status = hyper::status::NotFound;
return res.end();
}
},
_ => return res.end()
};
println!("copying...");
try!(copy(&mut req, &mut res));
println!("copied...");
res.end()
}
}
fn main() {
let server = Server::http(Ipv4Addr(127, 0, 0, 1), 1337);
server.listen(Echo);
}