Home
last modified time | relevance | path

Searched refs:network (Results 1 – 18 of 18) sorted by relevance

/webrtc/ice/src/agent/
H A Dagent_gather.rs255 let network = UDP.to_owned(); in gather_candidates_local() localVariable
288 network, in gather_candidates_local()
310 network: network.clone(), in gather_candidates_local()
342 network, in gather_candidates_local()
434 network: UDP.to_owned(), in gather_candidates_local_udp_mux()
495 network, in gather_candidates_srflx_mapped()
528 network: network.clone(), in gather_candidates_srflx_mapped()
546 network, in gather_candidates_srflx_mapped()
664 network: network.clone(), in gather_candidates_srflx()
682 network, in gather_candidates_srflx()
[all …]
H A Dagent_test.rs55 network: "udp".to_owned(), in test_pair_priority()
67 network: "udp".to_owned(), in test_pair_priority()
82 network: "udp".to_owned(), in test_pair_priority()
96 network: "udp".to_owned(), in test_pair_priority()
110 network: "udp".to_owned(), in test_pair_priority()
203 network: "udp".to_owned(), in test_on_selected_candidate_pair_change()
215 network: "udp".to_owned(), in test_on_selected_candidate_pair_change()
248 network: "udp".to_owned(), in test_handle_peer_reflexive_udp_pflx_candidate()
347 network: "udp".to_owned(), in test_handle_peer_reflexive_unknown_remote()
650 network: "udp".to_owned(), in test_inbound_validity()
[all …]
H A Dagent_internal.rs927 network: network_type.to_string(), in handle_inbound()
/webrtc/ice/src/candidate/
H A Dcandidate_pair_test.rs11 network: "udp".to_owned(), in host_candidate()
24 network: "udp".to_owned(), in prflx_candidate()
37 network: "udp".to_owned(), in srflx_candidate()
50 network: "udp".to_owned(), in relay_candidate()
H A Dcandidate_base.rs26 pub network: String, field
59 pub(crate) network: String, field
87 network: String::new(), in default()
295 let network_type = determine_network_type(&self.network, ip)?; in set_ip()
410 let network = split[2].to_owned(); in unmarshal_candidate() localVariable
459 network, in unmarshal_candidate()
474 network, in unmarshal_candidate()
490 network, in unmarshal_candidate()
507 network, in unmarshal_candidate()
H A Dcandidate_host.rs32 network: self.base_config.network, in new_candidate_host()
H A Dcandidate_peer_reflexive.rs26 let network_type = determine_network_type(&self.base_config.network, &ip)?; in new_candidate_peer_reflexive()
H A Dcandidate_server_reflexive.rs25 let network_type = determine_network_type(&self.base_config.network, &ip)?; in new_candidate_server_reflexive()
H A Dcandidate_relay.rs34 let network_type = determine_network_type(&self.base_config.network, &ip)?; in new_candidate_relay()
/webrtc/webrtc/src/ice_transport/
H A Dice_candidate.rs73 network: self.protocol.to_string(), in to_ice()
90 network: self.protocol.to_string(), in to_ice()
107 network: self.protocol.to_string(), in to_ice()
124 network: self.protocol.to_string(), in to_ice()
/webrtc/util/src/vnet/
H A Dchunk.rs105 fn network(&self) -> String; // returns "udp" or "tcp" in network() method
153 self.network(), in fmt()
208 fn network(&self) -> String { in network() method
259 self.network(), in fmt()
316 fn network(&self) -> String { in network() method
H A Dnat.rs162 if from.network() == UDP_STR { in translate_outbound()
293 if from.network() == UDP_STR { in translate_inbound()
H A Dnet.rs54 if c.network() == UDP_STR && c.get_destination_ip().is_loopback() { in write()
161 if c.network() == UDP_STR { in on_inbound_chunk()
/webrtc/ice/src/network_type/
H A Dmod.rs129 pub(crate) fn determine_network_type(network: &str, ip: &IpAddr) -> Result<NetworkType> { in determine_network_type()
131 let net = network.to_lowercase(); in determine_network_type()
/webrtc/turn/src/proto/
H A Daddr.rs32 pub fn network(&self) -> String { in network() method
/webrtc/ice/src/udp_mux/
H A Dudp_mux_test.rs157 network: Network, in test_mux_connection()
162 let connect_addr = network in test_mux_connection()
167 let remote_connection = Arc::new(network.bind().await?); in test_mux_connection()
/webrtc/util/src/vnet/chunk/
H A Dchunk_test.rs31 assert_eq!(c.network(), UDP_STR, "should match"); in test_chunk_udp()
/webrtc/turn/src/proto/addr/
H A Daddr_test.rs15 assert_eq!(a.network(), "turn", "unexpected network"); in test_addr_from_socket_addr()