Home
last modified time | relevance | path

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

/webrtc/ice/src/candidate/
H A Dcandidate_test.rs10 candidate_type: CandidateType::Host, in test_candidate_priority()
18 candidate_type: CandidateType::Host, in test_candidate_priority()
28 candidate_type: CandidateType::Host, in test_candidate_priority()
38 candidate_type: CandidateType::Host, in test_candidate_priority()
144 candidate_type: CandidateType::Host, in test_candidate_foundation()
151 candidate_type: CandidateType::Host, in test_candidate_foundation()
162 candidate_type: CandidateType::Host, in test_candidate_foundation()
169 candidate_type: CandidateType::Host, in test_candidate_foundation()
180 candidate_type: CandidateType::Host, in test_candidate_foundation()
273 (CandidateType::Host, "\"host\""), in test_candidate_type_serialization()
[all …]
H A Dmod.rs95 Host, enumerator
108 CandidateType::Host => "host", in fmt()
134 Self::Host => 126, in preference()
H A Dcandidate_host.rs26 candidate_type: CandidateType::Host, in new_candidate_host()
H A Dcandidate_base.rs368 CandidateType::Host | CandidateType::Relay => match self.tcp_type() { in local_preference()
/webrtc/webrtc/src/ice_transport/
H A Dice_candidate_type.rs17 Host, enumerator
51 ICE_CANDIDATE_TYPE_HOST_STR => RTCIceCandidateType::Host, in from()
63 CandidateType::Host => RTCIceCandidateType::Host, in from()
75 RTCIceCandidateType::Host => write!(f, "{ICE_CANDIDATE_TYPE_HOST_STR}"), in fmt()
92 ("host", RTCIceCandidateType::Host), in test_ice_candidate_type()
108 (RTCIceCandidateType::Host, "host"), in test_ice_candidate_type_string()
H A Dice_gatherer.rs95 candidate_types.push(ice::candidate::CandidateType::Host); in create_agent()
101 RTCIceCandidateType::Host => CandidateType::Host, in create_agent()
H A Dice_candidate.rs69 RTCIceCandidateType::Host => { in to_ice()
/webrtc/ice/src/mdns/
H A Dmdns_test.rs19 candidate_types: vec![CandidateType::Host], in test_multicast_dns_only_connection()
30 candidate_types: vec![CandidateType::Host], in test_multicast_dns_only_connection()
53 candidate_types: vec![CandidateType::Host], in test_multicast_dns_mixed_connection()
64 candidate_types: vec![CandidateType::Host], in test_multicast_dns_mixed_connection()
87 candidate_types: vec![CandidateType::Host], in test_multicast_dns_static_host_name()
100 candidate_types: vec![CandidateType::Host], in test_multicast_dns_static_host_name()
/webrtc/ice/src/agent/
H A Dagent_config.rs48 CandidateType::Host, in default_candidate_types()
223 if ext_ip_mapper.candidate_type == CandidateType::Host { in init_ext_ip_mapping()
229 if *candi_type == CandidateType::Host { in init_ext_ip_mapping()
H A Dmod.rs157 && (candidate_types.len() != 1 || candidate_types[0] != CandidateType::Host) in new()
268 if c.candidate_type() == CandidateType::Host && c.address().ends_with(".local") { in add_remote_candidate()
277 if c.candidate_type() != CandidateType::Host { in add_remote_candidate()
H A Dagent_gather.rs91 CandidateType::Host => { in gather_candidates_internal()
234 if ext_ip_mapper2.candidate_type == CandidateType::Host { in gather_candidates_local()
398 if mapper.candidate_type != CandidateType::Host { in gather_candidates_local_udp_mux()
H A Dagent_test.rs551 candidate_types: vec![CandidateType::Host], in test_connectivity_lite()
1459 nat_1to1_ip_candidate_type: CandidateType::Host, in test_init_ext_ip_mapping()
1473 nat_1to1_ip_candidate_type: CandidateType::Host, in test_init_ext_ip_mapping()
1511 nat_1to1_ip_candidate_type: CandidateType::Host, in test_init_ext_ip_mapping()
1529 nat_1to1_ip_candidate_type: CandidateType::Host, in test_init_ext_ip_mapping()
2147 candidate_types: vec![CandidateType::Host], in test_lite_lifecycle()
H A Dagent_selector.rs67 CandidateType::Host => { in is_nominatable()
H A Dagent_gather_test.rs299 CandidateType::Host => { in test_vnet_gather_with_nat_1to1_as_srflx_candidates()
H A Dagent_vnet_test.rs663 nat_1to1_ip_candidate_type: CandidateType::Host, // Use 1:1 NAT IP as a host candidate in test_connectivity_vnet_1to1_nat_with_host_candidate_vs_symmetric_nats()
/webrtc/ice/src/external_ip_mapper/
H A Dexternal_ip_mapper_test.rs27 assert_eq!(m.candidate_type, CandidateType::Host, "should match"); in test_external_ip_mapper_new_external_ip_mapper()
49 assert_eq!(m.candidate_type, CandidateType::Host, "should match"); in test_external_ip_mapper_new_external_ip_mapper()
61 assert_eq!(m.candidate_type, CandidateType::Host, "should match"); in test_external_ip_mapper_new_external_ip_mapper()
108 assert_eq!(m.candidate_type, CandidateType::Host, "should match"); in test_external_ip_mapper_new_external_ip_mapper_with_explicit_local_ip()
H A Dmod.rs77 candidate_type = CandidateType::Host; // defaults to host in new()
78 } else if candidate_type != CandidateType::Host in new()
/webrtc/webrtc/src/api/setting_engine/
H A Dsetting_engine_test.rs67 let typ = RTCIceCandidateType::Host; in test_set_nat_1to1_ips()