rawsock/pfring/paths.rs
1/// Default paths (os-specific) where the pfring dynamically loaded library is stored.
2#[cfg(all(unix, not(any(target_os = "macos", target_os = "ios"))))]
3pub const DEFAULT_PATHS: [&'static str; 2] = [
4 "libpfring.so",
5 "libpfring.so.1"
6];
7
8/// Default paths (os-specific) where the pfring dynamically loaded library is stored.
9#[cfg(any(windows, target_os = "macos", target_os = "ios"))]
10pub const DEFAULT_PATHS: [&'static str; 0] = [];