Home
last modified time | relevance | path

Searched refs:tc_url (Results 1 – 3 of 3) sorted by relevance

/xiu/protocol/rtmp/src/netconnection/
H A Dwriter.rs18 pub tc_url: Option<String>, // URL of the Server, rtmp://host:1935/testapp/instance1 field
35 tc_url: Some("".to_string()), in new()
51 tc_url: None, in new_none()
130 if let Some(tc_url) = properties.tc_url.clone() { in write_connect()
131 properties_map.insert(String::from("tcUrl"), Amf0ValueType::UTF8String(tc_url)); in write_connect()
/xiu/protocol/rtmp/src/session/
H A Dserver_session.rs381 if let Amf0ValueType::UTF8String(tc_url) = value { in parse_connect_properties()
382 self.connect_properties.tc_url = Some(tc_url.clone()); in parse_connect_properties()
526 if let Some(tc_url) = &self.connect_properties.tc_url { in get_request_url()
H A Dclient_session.rs355 properties.tc_url = Some(url.clone()); in send_connect()
366 properties.tc_url = Some(url.clone()); in send_connect()