Searched refs:srtp_session (Results 1 – 3 of 3) sorted by relevance
74 pub(crate) srtp_session: Mutex<Option<Arc<Session>>>, field205 let mut srtp_session = self.srtp_session.lock().await; in start_srtp() localVariable206 *srtp_session = { in start_srtp()275 let srtp_session = self.srtp_session.lock().await; in get_srtp_session() localVariable276 srtp_session.clone() in get_srtp_session()475 let srtp_session = { in stop() localVariable476 let mut srtp_session = self.srtp_session.lock().await; in stop() localVariable477 srtp_session.take() in stop()479 if let Some(srtp_session) = srtp_session { in stop()480 match srtp_session.close().await { in stop()[all …]
155 let srtp_session = self.rtp_transport.get_srtp_session().await; in init() localVariable157 *session = srtp_session; in init()
244 let srtp_session = match dtls_transport.get_srtp_session().await { in undeclared_media_processor() localVariable252 let stream = match srtp_session.accept().await { in undeclared_media_processor()