1 2 3 4 5 6 7 8 9 10 11 12
cfg_select! { feature = "iocp-wait-packet" => { mod packet; use packet as sys; } _ => { mod thread_pool; use thread_pool as sys; } } pub use sys::*;