Home
last modified time | relevance | path

Searched refs:UTF8String (Results 1 – 8 of 8) sorted by relevance

/xiu/protocol/rtmp/src/netconnection/
H A Dwriter.rs116 properties_map.insert(String::from("app"), Amf0ValueType::UTF8String(app)); in write_connect()
120 properties_map.insert(String::from("type"), Amf0ValueType::UTF8String(pub_type)); in write_connect()
126 Amf0ValueType::UTF8String(flash_ver), in write_connect()
131 properties_map.insert(String::from("tcUrl"), Amf0ValueType::UTF8String(tc_url)); in write_connect()
202 Amf0ValueType::UTF8String(fmsver.to_owned()), in write_connect_response()
215 Amf0ValueType::UTF8String(level.to_owned()), in write_connect_response()
219 Amf0ValueType::UTF8String(code.to_owned()), in write_connect_response()
223 Amf0ValueType::UTF8String(description.to_owned()), in write_connect_response()
289 Amf0ValueType::UTF8String(level.to_owned()), in error()
293 Amf0ValueType::UTF8String(code.to_owned()), in error()
[all …]
/xiu/protocol/rtmp/src/amf0/
H A Damf0_reader.rs94 Ok(Amf0ValueType::UTF8String(raw_string)) in read_string()
207 Amf0ValueType::UTF8String(String::from("connect")) in test_amf_reader()
217 Amf0ValueType::UTF8String(String::from("harlan")), in test_amf_reader()
221 Amf0ValueType::UTF8String(String::from("nonprivate")), in test_amf_reader()
225 Amf0ValueType::UTF8String(String::from("FMLE/3.0 (compatible; FMSc/1.0)")), in test_amf_reader()
229 Amf0ValueType::UTF8String(String::from("rtmp://localhost:1935/harlan")), in test_amf_reader()
233 Amf0ValueType::UTF8String(String::from("rtmp://localhost:1935/harlan")), in test_amf_reader()
335 Amf0ValueType::UTF8String(String::from("connect")) in test_player_connect_reader()
354 Amf0ValueType::UTF8String(String::from("rtmp://localhost:1935/live")), in test_player_connect_reader()
359 Amf0ValueType::UTF8String(String::from("live")), in test_player_connect_reader()
H A Ddefine.rs7 UTF8String(String), enumerator
H A Damf0_writer.rs32 Amf0ValueType::UTF8String(ref val) => self.write_string(val), in write_any()
/xiu/protocol/rtmp/src/session/
H A Dserver_session.rs291 Amf0ValueType::UTF8String(str) => str, in on_amf0_command_message()
366 if let Amf0ValueType::UTF8String(app) = value { in parse_connect_properties()
371 if let Amf0ValueType::UTF8String(flash_ver) = value { in parse_connect_properties()
376 if let Amf0ValueType::UTF8String(swf_url) = value { in parse_connect_properties()
381 if let Amf0ValueType::UTF8String(tc_url) = value { in parse_connect_properties()
406 if let Amf0ValueType::UTF8String(page_url) = value { in parse_connect_properties()
452 Some(Amf0ValueType::UTF8String(app)) => app.clone(), in on_connect()
554 Amf0ValueType::UTF8String(val) => Some(val), in on_play()
678 Amf0ValueType::UTF8String(val) => val, in on_publish()
694 Amf0ValueType::UTF8String(val) => val, in on_publish()
H A Dclient_session.rs291 Amf0ValueType::UTF8String(str) => str, in on_amf0_command_message()
524 if let Some(Amf0ValueType::UTF8String(code_info)) = obj.get("code") { in on_status()
/xiu/protocol/rtmp/src/netstream/
H A Dwriter.rs211 Amf0ValueType::UTF8String(level.to_owned()), in write_on_status()
215 Amf0ValueType::UTF8String(code.to_owned()), in write_on_status()
219 Amf0ValueType::UTF8String(description.to_owned()), in write_on_status()
/xiu/protocol/rtmp/src/cache/
H A Dmetadata.rs64 if let Amf0ValueType::UTF8String(str) = values.remove(0) { in is_metadata()