Home
last modified time | relevance | path

Searched refs:NetConfig (Results 1 – 8 of 8) sorted by relevance

/webrtc/util/src/vnet/net/
H A Dnet_test.rs147 let nw = Net::new(Some(NetConfig::default())); in test_net_virtual_interfaces()
174 let nw = Net::new(Some(NetConfig::default())); in test_net_virtual_interface_by_name()
206 let nw = Net::new(Some(NetConfig::default())); in test_net_virtual_has_ipaddr()
240 let nw = Net::new(Some(NetConfig::default())); in test_net_virtual_get_all_ipaddrs()
386 let nw = Net::new(Some(NetConfig::default())); in test_net_virtual_resolve_addr()
408 let nw = Net::new(Some(NetConfig::default())); in test_net_virtual_loopback1()
429 let nw = Net::new(Some(NetConfig::default())); in test_net_virtual_bind_specific_port()
447 let nw = Net::new(Some(NetConfig::default())); in test_net_virtual_dail_lo0()
470 let nw = Net::new(Some(NetConfig::default())); in test_net_virtual_dail_eth0()
502 let nw = Net::new(Some(NetConfig::default())); in test_net_virtual_resolver()
[all …]
/webrtc/ice/src/agent/
H A Dagent_gather_test.rs13 let vnet = Arc::new(net::Net::new(Some(net::NetConfig::default()))); in test_vnet_gather_no_local_ip_address()
44 let nw = Arc::new(net::Net::new(Some(net::NetConfig::default()))); in test_vnet_gather_dynamic_ip_address()
78 let nw = Arc::new(net::Net::new(Some(net::NetConfig::default()))); in test_vnet_gather_listen_udp()
139 let nw = Arc::new(net::Net::new(Some(net::NetConfig { in test_vnet_gather_with_nat_1to1_as_host_candidates()
255 let nw = Arc::new(net::Net::new(Some(net::NetConfig { in test_vnet_gather_with_nat_1to1_as_srflx_candidates()
327 let nw = Arc::new(net::Net::new(Some(net::NetConfig::default()))); in test_vnet_gather_with_interface_filter()
439 let nw = Arc::new(net::Net::new(Some(net::NetConfig { in test_vnet_gather_muxed_udp()
H A Dagent_vnet_test.rs78 let wnet = Arc::new(net::Net::new(Some(net::NetConfig { in build_simple_vnet()
91 let net0 = Arc::new(net::Net::new(Some(net::NetConfig { in build_simple_vnet()
95 let net1 = Arc::new(net::Net::new(Some(net::NetConfig { in build_simple_vnet()
127 let wnet = Arc::new(net::Net::new(Some(net::NetConfig { in build_vnet()
146 let net0 = Arc::new(net::Net::new(Some(net::NetConfig { in build_vnet()
166 let net1 = Arc::new(net::Net::new(Some(net::NetConfig { in build_vnet()
775 let net0 = Arc::new(net::Net::new(Some(net::NetConfig { in test_disconnected_to_connected()
779 let net1 = Arc::new(net::Net::new(Some(net::NetConfig { in test_disconnected_to_connected()
925 let net0 = Arc::new(net::Net::new(Some(net::NetConfig { in test_write_use_valid_pair()
929 let net1 = Arc::new(net::Net::new(Some(net::NetConfig { in test_write_use_valid_pair()
H A Dagent_test.rs409 let net0 = Arc::new(net::Net::new(Some(net::NetConfig { in test_connectivity_on_startup()
413 let net1 = Arc::new(net::Net::new(Some(net::NetConfig { in test_connectivity_on_startup()
/webrtc/turn/src/server/
H A Dserver_test.rs112 let net0 = Arc::new(net::Net::new(Some(net::NetConfig { in build_vnet()
117 let net1 = Arc::new(net::Net::new(Some(net::NetConfig { in build_vnet()
151 let netl0 = Arc::new(net::Net::new(Some(net::NetConfig::default()))); in build_vnet()
/webrtc/util/src/vnet/router/
H A Drouter_test.rs165 let net = Net::new(Some(NetConfig::default())); in test_router_standalone_add_net()
203 net: Net::new(Some(NetConfig::default())), in test_router_standalone_routing()
287 net: Net::new(Some(NetConfig::default())), in test_router_standalone_add_chunk_filter()
383 net: Net::new(Some(NetConfig::default())), in delay_sub_test()
536 net: Net::new(Some(NetConfig::default())), in test_router_one_child()
770 let net = Net::new(Some(NetConfig { in test_router_failures_add_net()
/webrtc/webrtc/src/peer_connection/
H A Dpeer_connection_test.rs13 use util::vnet::net::{Net, NetConfig};
26 let offer_vnet = Arc::new(Net::new(Some(NetConfig { in create_vnet_pair()
51 let answer_vnet = Arc::new(Net::new(Some(NetConfig { in create_vnet_pair()
/webrtc/util/src/vnet/
H A Dnet.rs386 pub struct NetConfig { struct
410 pub fn new(config: Option<NetConfig>) -> Self { in new() argument