shadowsocks-rust 1.24.0

shadowsocks is a fast tunnel proxy that helps you bypass firewalls.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Daemonize server process

use cfg_if::cfg_if;

cfg_if! {
    if #[cfg(unix)] {
        mod unix;
        #[allow(unsafe_op_in_unsafe_fn, unused)]
        #[allow(clippy::module_inception)]
        mod daemonize;
        pub use self::unix::daemonize;
    } else {
        compile_error!("Process daemonization is not supported by the current platform");
    }
}