mirror of https://github.com/fafhrd91/actix-net
Merge 89c9d943fb
into bd9bda0504
This commit is contained in:
commit
9a3fc7df83
|
@ -31,7 +31,7 @@ async fn run() -> io::Result<()> {
|
|||
let count = Arc::new(AtomicUsize::new(0));
|
||||
|
||||
let addr = ("127.0.0.1", 8080);
|
||||
info!("starting server on port: {}", &addr.0);
|
||||
info!("starting server on: {}:{}", &addr.0, &addr.1);
|
||||
|
||||
// Bind socket address and start worker(s). By default, the server uses the number of physical
|
||||
// CPU cores as the worker count. For this reason, the closure passed to bind needs to return
|
||||
|
|
|
@ -74,17 +74,7 @@ impl Source for MioListener {
|
|||
match *self {
|
||||
MioListener::Tcp(ref mut lst) => lst.deregister(registry),
|
||||
#[cfg(unix)]
|
||||
MioListener::Uds(ref mut lst) => {
|
||||
let res = lst.deregister(registry);
|
||||
|
||||
// cleanup file path
|
||||
if let Ok(addr) = lst.local_addr() {
|
||||
if let Some(path) = addr.as_pathname() {
|
||||
let _ = std::fs::remove_file(path);
|
||||
}
|
||||
}
|
||||
res
|
||||
}
|
||||
MioListener::Uds(ref mut lst) => lst.deregister(registry),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue