Home
last modified time | relevance | path

Searched refs:swf_url (Results 1 – 2 of 2) sorted by relevance

/xiu/protocol/rtmp/src/netconnection/
H A Dwriter.rs17 pub swf_url: Option<String>, // URL of the source SWF file file://C:/FlvPlayer.swf field
34 swf_url: Some("".to_string()), in new()
50 swf_url: None, in new_none()
134 if let Some(swf_url) = properties.swf_url.clone() { in write_connect()
135 properties_map.insert(String::from("swfUrl"), Amf0ValueType::UTF8String(swf_url)); in write_connect()
/xiu/protocol/rtmp/src/session/
H A Dserver_session.rs376 if let Amf0ValueType::UTF8String(swf_url) = value { in parse_connect_properties()
377 self.connect_properties.swf_url = Some(swf_url.clone()); in parse_connect_properties()