Home
last modified time | relevance | path

Searched refs:Url (Results 1 – 21 of 21) sorted by relevance

/webrtc/ice/src/candidate/
H A Dcandidate_server_reflexive_test.rs6 use crate::url::{SchemeType, Url};
49 urls: vec![Url { in test_server_reflexive_only_connection()
65 urls: vec![Url { in test_server_reflexive_only_connection()
H A Dcandidate_relay_test.rs7 use crate::url::{ProtoType, SchemeType, Url};
70 urls: vec![Url { in test_relay_only_connection()
88 urls: vec![Url { in test_relay_only_connection()
/webrtc/sdp/src/extmap/
H A Dmod.rs10 use url::Url;
31 pub uri: Option<Url>,
97 let uri = Some(Url::parse(fields[1])?); in unmarshal()
H A Dextmap_test.rs56 let uri = Some(Url::parse( in test_transport_cc_extmap()
/webrtc/ice/src/url/
H A Dmod.rs107 pub struct Url { struct
116 impl fmt::Display for Url { argument
135 impl Url { implementation
153 let raw_parts = url::Url::parse(&s)?; in parse_url()
H A Durl_test.rs90 let url = Url::parse_url(raw_url)?; in test_parse_url_success()
129 let result = Url::parse_url(raw_url); in test_parse_url_failure()
/webrtc/webrtc/src/ice_transport/
H A Dice_server.rs15 pub(crate) fn parse_url(&self, url_str: &str) -> Result<ice::url::Url> { in parse_url() argument
16 Ok(ice::url::Url::parse_url(url_str)?) in parse_url()
24 pub(crate) fn urls(&self) -> Result<Vec<ice::url::Url>> { in urls() argument
H A Dice_gatherer.rs15 use ice::url::Url;
53 pub(crate) validated_servers: Vec<Url>,
69 validated_servers: Vec<Url>, in new() argument
/webrtc/stun/src/
H A Duri.rs53 let raw_parts = url::Url::parse(&s)?; in parse_uri()
H A Derror.rs65 Url(#[from] url::ParseError), enumerator
/webrtc/sdp/src/description/
H A Dmedia.rs3 use url::Url;
183 match Url::parse(uri_str) { in with_transport_cc_extmap()
H A Ddescription_test.rs7 use url::Url;
60 uri: Some(Url::parse("http://www.example.com/seminars/sdp.pdf")?), in test_marshal()
H A Dsession.rs5 use url::Url;
188 pub uri: Option<Url>,
985 lexer.desc.uri = Some(Url::parse(&value)?); in unmarshal_uri()
/webrtc/ice/src/agent/
H A Dagent_vnet_test.rs282 pub(crate) urls: Vec<Url>,
466 let stun_server_url = Url { in test_connectivity_simple_vnet_full_cone_nats_on_both_ends()
519 let stun_server_url = Url { in test_connectivity_vnet_full_cone_nats_on_both_ends()
527 let _turn_server_url = Url { in test_connectivity_vnet_full_cone_nats_on_both_ends()
581 let stun_server_url = Url { in test_connectivity_vnet_symmetric_nats_on_both_ends()
589 let turn_server_url = Url { in test_connectivity_vnet_symmetric_nats_on_both_ends()
H A Dagent_transport_test.rs62 let stun_server_url = Url { in test_remote_local_addr()
H A Dagent_gather.rs5 use crate::url::{ProtoType, SchemeType, Url};
25 pub(crate) urls: Vec<Url>,
70 urls: Vec<Url>,
717 urls: Vec<Url>, in gather_candidates_relay() argument
H A Dagent_config.rs61 pub urls: Vec<Url>,
H A Dmod.rs110 pub(crate) urls: Vec<Url>,
H A Dagent_gather_test.rs379 let turn_server_url = Url { in test_vnet_gather_turn_connection_leak()
H A Dagent_test.rs518 let stun_server_url = Url { in test_connectivity_lite()
/webrtc/webrtc/src/peer_connection/sdp/
H A Dmod.rs34 use url::Url;
507 let ext_url = Url::parse(rtp_extension.uri.as_str())?; in add_transceiver_sdp()