Home
last modified time | relevance | path

Searched defs:Interface (Results 1 – 6 of 6) sorted by relevance

/webrtc/util/src/ifaces/
H A Dmod.rs20 pub struct Interface { struct
21 pub name: String,
22 pub kind: Kind,
23 pub addr: Option<::std::net::SocketAddr>,
24 pub mask: Option<::std::net::SocketAddr>,
25 pub hop: Option<NextHop>,
/webrtc/util/src/vnet/
H A Dinterface.rs7 pub struct Interface { struct
12 impl Interface { implementation
H A Dnet.rs46 fn get_interface(&self, ifc_name: &str) -> Option<&Interface> { in get_interface()
119 async fn get_interface(&self, ifc_name: &str) -> Option<Interface> { in get_interface()
179 pub(crate) fn get_interfaces(&self) -> &[Interface] { in get_interfaces()
476 pub async fn get_interfaces(&self) -> Vec<Interface> { in get_interfaces()
487 pub async fn get_interface(&self, ifc_name: &str) -> Option<Interface> { in get_interface()
H A Drouter.rs65 async fn get_interface(&self, ifc_name: &str) -> Option<Interface>; in get_interface()
107 async fn get_interface(&self, ifc_name: &str) -> Option<Interface> { in get_interface()
295 pub(crate) fn get_interfaces(&self) -> &[Interface] { in get_interfaces()
/webrtc/util/src/vnet/router/
H A Drouter_test.rs31 async fn get_interface(&self, ifc_name: &str) -> Option<Interface> { in get_interface()
/webrtc/util/src/ifaces/ffi/windows/
H A Dmod.rs319 unsafe fn map_adapter_addresses(mut adapter_addr: *const IpAdapterAddresses) -> Vec<Interface> { in map_adapter_addresses()