| /webrtc/dtls/ |
| H A D | README.md | 6 <a href="https://github.com/webrtc-rs/dtls/actions"> 7 <img src="https://github.com/webrtc-rs/dtls/workflows/cargo/badge.svg"> 9 <a href="https://codecov.io/gh/webrtc-rs/dtls"> 10 <img src="https://codecov.io/gh/webrtc-rs/dtls/branch/main/graph/badge.svg"> 12 <a href="https://deps.rs/repo/github/webrtc-rs/dtls"> 13 <img src="https://deps.rs/repo/github/webrtc-rs/dtls/status.svg"> 15 <a href="https://crates.io/crates/webrtc-dtls"> 16 <img src="https://img.shields.io/crates/v/webrtc-dtls.svg"> 18 <a href="https://docs.rs/webrtc-dtls"> 19 <img src="https://docs.rs/webrtc-dtls/badge.svg"> [all …]
|
| H A D | Cargo.toml | 2 name = "webrtc-dtls" 8 documentation = "https://docs.rs/webrtc-dtls" 10 repository = "https://github.com/webrtc-rs/dtls"
|
| H A D | CHANGELOG.md | 1 # webrtc-dtls changelog 26 …es, but not always, available in the [GitHub Releases](https://github.com/webrtc-rs/dtls/releases).
|
| /webrtc/dtls/examples/hub/ |
| H A D | Cargo.toml | 10 dtls = { package = "webrtc-dtls", path = "../../" }
|
| /webrtc/webrtc/ |
| H A D | Cargo.toml | 18 dtls = { version = "0.7.1", path = "../dtls", package = "webrtc-dtls" } 63 pem = ["dep:pem", "dtls/pem"]
|
| H A D | CHANGELOG.md | 199 * dtls: 0.5.2 => 0.6.0
|
| /webrtc/webrtc/src/dtls_transport/ |
| H A D | mod.rs | 9 use dtls::config::ClientAuthType; 10 use dtls::conn::DTLSConn; 11 use dtls::extension::extension_use_srtp::SrtpProtectionProfile; 319 ) -> Result<(DTLSRole, dtls::config::Config)> { in prepare_transport() 348 dtls::config::Config { in prepare_transport() 373 if self.setting_engine.replay_protection.dtls != 0 { in start() 374 dtls_config.replay_protection_window = self.setting_engine.replay_protection.dtls; in start() 380 dtls::conn::DTLSConn::new( in start() 388 dtls::conn::DTLSConn::new( in start() 397 Err(dtls::Error::Other( in start() [all …]
|
| /webrtc/dtls/examples/hub/src/ |
| H A D | utilities.rs | 3 use dtls::crypto::{Certificate, CryptoPrivateKey}; 28 impl From<Error> for dtls::Error { 30 dtls::Error::Other(e.to_string()) in from()
|
| H A D | lib.rs | 12 use dtls::Error;
|
| /webrtc/dtls/src/record_layer/ |
| H A D | record_layer_test.rs | 57 if let Err(dtls) = dtls_pkts { in test_udp_decode() 58 assert_eq!(err.to_string(), dtls.to_string()); in test_udp_decode()
|
| /webrtc/webrtc/src/peer_connection/ |
| H A D | certificate.rs | 1 use dtls::crypto::{CryptoPrivateKey, CryptoPrivateKeyKind}; 19 pub(crate) dtls_certificate: dtls::crypto::Certificate, 87 dtls_certificate: dtls::crypto::Certificate { in from_params() 141 dtls::crypto::Certificate::from_pem(&pem_blocks.collect::<Vec<&str>>().join("\n\n"))?; in from_pem() 152 pub fn from_existing(dtls_certificate: dtls::crypto::Certificate, expires: SystemTime) -> Self { in from_existing()
|
| /webrtc/examples/examples/ortc/ |
| H A D | ortc.rs | 93 let dtls = Arc::new(api.new_dtls_transport(Arc::clone(&ice), vec![])?); in main() localVariable 96 let sctp = Arc::new(api.new_sctp_transport(Arc::clone(&dtls))?); in main() 154 let dtls_parameters = dtls.get_local_parameters()?; in main() 188 dtls.start(remote_signal.dtls_parameters).await?; in main() 235 dtls.stop().await?; in main()
|
| /webrtc/ |
| H A D | Cargo.toml | 5 "dtls",
|
| H A D | README.md | 87 …">DTLS<a href="https://crates.io/crates/webrtc-dtls"><img src="https://img.shields.io/crates/v/web…
|
| H A D | Cargo.lock | 1211 "webrtc-dtls", 2658 "webrtc-dtls", 2695 name = "webrtc-dtls"
|
| /webrtc/webrtc/src/ |
| H A D | lib.rs | 6 pub use dtls;
|
| H A D | error.rs | 394 Dtls(#[from] dtls::Error),
|
| /webrtc/webrtc/src/api/setting_engine/ |
| H A D | setting_engine_test.rs | 101 !(s.replay_protection.dtls != 0 in test_set_replay_protection() 112 !(s.replay_protection.dtls == 0 || s.replay_protection.dtls != 128), in test_set_replay_protection()
|
| H A D | mod.rs | 6 use dtls::extension::extension_use_srtp::SrtpProtectionProfile; 51 pub dtls: usize, field 257 self.replay_protection.dtls = n; in set_dtls_replay_protection_window()
|
| /webrtc/webrtc/src/data_channel/ |
| H A D | data_channel_test.rs | 1274 dtls: Arc<RTCDtlsTransport>, field 1294 let dtls = Arc::new(api.new_dtls_transport(Arc::clone(&ice), vec![])?); in new() localVariable 1297 let sctp = Arc::new(api.new_sctp_transport(Arc::clone(&dtls))?); in new() 1302 dtls, in new() 1320 self.dtls.start(sig.dtls_parameters.clone()).await?; in set_signal() 1349 let dtls_parameters = self.dtls.get_local_parameters()?; in get_signal()
|