Searched refs:RTCIceTransportPolicy (Results 1 – 3 of 3) sorted by relevance
| /webrtc/webrtc/src/peer_connection/policy/ |
| H A D | ice_transport_policy.rs | 7 pub enum RTCIceTransportPolicy { enum 22 pub type ICEGatherPolicy = RTCIceTransportPolicy; 28 impl From<&str> for RTCIceTransportPolicy { implementation 32 ICE_TRANSPORT_POLICY_ALL_STR => RTCIceTransportPolicy::All, in from() 33 _ => RTCIceTransportPolicy::Unspecified, in from() 38 impl fmt::Display for RTCIceTransportPolicy { implementation 42 RTCIceTransportPolicy::All => ICE_TRANSPORT_POLICY_ALL_STR, in fmt() 56 ("relay", RTCIceTransportPolicy::Relay), in test_new_ice_transport_policy() 57 ("all", RTCIceTransportPolicy::All), in test_new_ice_transport_policy() 68 (RTCIceTransportPolicy::Relay, "relay"), in test_ice_transport_policy_string() [all …]
|
| /webrtc/webrtc/src/peer_connection/ |
| H A D | configuration.rs | 4 use crate::peer_connection::policy::ice_transport_policy::RTCIceTransportPolicy; 20 pub ice_transport_policy: RTCIceTransportPolicy,
|
| /webrtc/webrtc/src/ice_transport/ |
| H A D | ice_gatherer.rs | 8 use crate::peer_connection::policy::ice_transport_policy::RTCIceTransportPolicy; 29 pub ice_gather_policy: RTCIceTransportPolicy, 54 pub(crate) gather_policy: RTCIceTransportPolicy, 70 gather_policy: RTCIceTransportPolicy, in new() argument 96 } else if self.gather_policy == RTCIceTransportPolicy::Relay { in create_agent()
|