Update mod.rs

main
shellrow 3 years ago
parent e072e3de14
commit aec1e2017c
  1. 4
      src/gateway/mod.rs

@ -1,8 +1,8 @@
#[cfg(any(target_os = "macos", target_os = "openbsd", target_os = "freebsd", target_os = "netbsd", target_os = "ios"))] #[cfg(any(target_os = "macos", target_os = "openbsd", target_os = "freebsd", target_os = "netbsd", target_os = "ios"))]
pub mod unix; pub(crate) mod unix;
#[cfg(any(target_os = "linux", target_os = "android"))] #[cfg(any(target_os = "linux", target_os = "android"))]
pub mod linux; pub(crate) mod linux;
use std::net::{IpAddr, Ipv4Addr}; use std::net::{IpAddr, Ipv4Addr};
use crate::interface::{self, MacAddr, Interface}; use crate::interface::{self, MacAddr, Interface};

Loading…
Cancel
Save