Home
last modified time | relevance | path

Searched refs:srtp (Results 1 – 20 of 20) sorted by relevance

/webrtc/srtp/
H A DREADME.md6 <a href="https://github.com/webrtc-rs/srtp/actions">
7 <img src="https://github.com/webrtc-rs/srtp/workflows/cargo/badge.svg">
9 <a href="https://codecov.io/gh/webrtc-rs/srtp">
10 <img src="https://codecov.io/gh/webrtc-rs/srtp/branch/main/graph/badge.svg">
12 <a href="https://deps.rs/repo/github/webrtc-rs/srtp">
13 <img src="https://deps.rs/repo/github/webrtc-rs/srtp/status.svg">
15 <a href="https://crates.io/crates/webrtc-srtp">
16 <img src="https://img.shields.io/crates/v/webrtc-srtp.svg">
18 <a href="https://docs.rs/webrtc-srtp">
19 <img src="https://docs.rs/webrtc-srtp/badge.svg">
[all …]
H A DCHANGELOG.md1 # webrtc-srtp changelog
13 * [#8 update deps + loosen some requirements](https://github.com/webrtc-rs/srtp/pull/8) by [@meleke…
18 …es, but not always, available in the [GitHub Releases](https://github.com/webrtc-rs/srtp/releases).
H A DCargo.toml2 name = "webrtc-srtp"
8 documentation = "https://docs.rs/webrtc-srtp"
10 repository = "https://github.com/webrtc-rs/srtp"
/webrtc/interceptor/
H A DCargo.toml17 srtp = { version = "0.9.0", path = "../srtp", package = "webrtc-srtp" }
/webrtc/webrtc/src/dtls_transport/
H A Dmod.rs15 use srtp::protection_profile::ProtectionProfile;
16 use srtp::session::Session;
17 use srtp::stream::Stream;
182 let mut srtp_config = srtp::config::Config { in start_srtp()
187 if self.setting_engine.replay_protection.srtp != 0 { in start_srtp()
189 self.setting_engine.replay_protection.srtp, in start_srtp()
223 let mut srtcp_config = srtp::config::Config { in start_srtp()
415 srtp::protection_profile::ProtectionProfile::AeadAes128Gcm in start()
418 srtp::protection_profile::ProtectionProfile::Aes128CmHmacSha1_80 in start()
585 Arc<srtp::stream::Stream>, in streams_for_ssrc()
[all …]
/webrtc/webrtc/src/track/
H A Dmod.rs16 pub(crate) rtp_read_stream: Option<Arc<srtp::stream::Stream>>,
18 pub(crate) rtcp_read_stream: Option<Arc<srtp::stream::Stream>>,
/webrtc/webrtc/
H A DCargo.toml27 srtp = { version = "0.9.0", path = "../srtp", package = "webrtc-srtp" }
H A DCHANGELOG.md202 * srtp: 0.8.9 => 0.9.0
/webrtc/
H A DCargo.toml15 "srtp",
H A DREADME.md84 …">SRTP<a href="https://crates.io/crates/webrtc-srtp"><img src="https://img.shields.io/crates/v/web…
H A DCargo.lock1322 "webrtc-srtp",
2663 "webrtc-srtp",
2814 name = "webrtc-srtp"
/webrtc/webrtc/src/
H A Dlib.rs15 pub use srtp;
H A Derror.rs392 Srtp(#[from] srtp::Error),
/webrtc/interceptor/src/
H A Dstream_reader.rs5 use srtp::stream::Stream;
H A Derror.rs26 Srtp(#[from] srtp::Error),
/webrtc/webrtc/src/api/setting_engine/
H A Dsetting_engine_test.rs102 || s.replay_protection.srtp != 0 in test_set_replay_protection()
116 !(s.replay_protection.srtp == 0 || s.replay_protection.srtp != 64), in test_set_replay_protection()
H A Dmod.rs52 pub srtp: usize, field
263 self.replay_protection.srtp = n; in set_srtp_replay_protection_window()
/webrtc/webrtc/src/rtp_transceiver/
H A Dsrtp_writer_future.rs6 use srtp::session::Session;
7 use srtp::stream::Stream;
/webrtc/srtp/src/context/
H A Dmod.rs18 pub mod srtp; module
/webrtc/webrtc/src/peer_connection/
H A Dmod.rs80 use srtp::stream::Stream;