我从ironframework.io获得了这个简单的例子:
extern crate iron;
use iron::prelude::*;
use iron::status;
fn main() {
fn hello_world(_: &mut Request) -> IronResult<Response> {
Ok(Response::with((status::Ok, "Hello World!")))
}
// below code
let _server = Iron::new(hello_world).http("localhost:3000").unwrap();
println!("On 3000");
}
我希望服务器监听Unix域套接字(UDS)。