Home
last modified time | relevance | path

Searched refs:SessionType (Results 1 – 6 of 6) sorted by relevance

/xiu/protocol/rtmp/src/session/
H A Ddefine.rs29 pub enum SessionType { enum
34 impl fmt::Display for SessionType { implementation
37 SessionType::Client => String::from("client"), in fmt()
38 SessionType::Server => String::from("server"), in fmt()
H A Dcommon.rs6 define::SessionType,
45 pub session_type: SessionType,
58 session_type: SessionType, in new() argument
254 SessionType::Client => SubscribeType::PublisherRtmp, in get_subscriber_info()
255 SessionType::Server => SubscribeType::PlayerRtmp, in get_subscriber_info()
279 SessionType::Client => PublishType::RelayRtmp, in get_publisher_info()
280 SessionType::Server => PublishType::PushRtmp, in get_publisher_info()
H A Dclient_session.rs7 define::SessionType,
121 let common = Common::new(packetizer, event_producer, SessionType::Client, remote_addr); in new()
H A Dserver_session.rs7 define::SessionType,
92 SessionType::Server, in new()
/xiu/protocol/rtsp/src/session/
H A Ddefine.rs31 pub enum SessionType { enum
36 impl fmt::Display for SessionType { implementation
39 SessionType::Client => String::from("client"), in fmt()
40 SessionType::Server => String::from("server"), in fmt()
/xiu/protocol/rtmp/src/remuxer/
H A Drtsp2rtmp.rs16 session::define::SessionType,
77 rtmp_handler: Common::new(None, event_producer, SessionType::Server, None), in new()