我有一个来自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)。