如何配置Iron来收听Unix域套接字?

时间:2017-12-17 07:54:24

标签: rust unix-socket iron

我从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)。

0 个答案:

没有答案