| /webrtc/sctp/ |
| H A D | README.md | 6 <a href="https://github.com/webrtc-rs/sctp/actions"> 7 <img src="https://github.com/webrtc-rs/sctp/workflows/cargo/badge.svg"> 9 <a href="https://codecov.io/gh/webrtc-rs/sctp"> 10 <img src="https://codecov.io/gh/webrtc-rs/sctp/branch/main/graph/badge.svg"> 12 <a href="https://deps.rs/repo/github/webrtc-rs/sctp"> 13 <img src="https://deps.rs/repo/github/webrtc-rs/sctp/status.svg"> 15 <a href="https://crates.io/crates/webrtc-sctp"> 16 <img src="https://img.shields.io/crates/v/webrtc-sctp.svg"> 18 <a href="https://docs.rs/webrtc-sctp"> 19 <img src="https://docs.rs/webrtc-sctp/badge.svg"> [all …]
|
| H A D | CHANGELOG.md | 1 # webrtc-sctp changelog 15 * Make `sctp::Stream::write` & `sctp::Stream::write_sctp` async again [#367](https://github.com/web… 28 * Make `sctp::Stream::write` & `sctp::Stream::write_sctp` sync [#344](https://github.com/webrtc-rs/… 37 …es, but not always, available in the [GitHub Releases](https://github.com/webrtc-rs/sctp/releases).
|
| H A D | Cargo.toml | 2 name = "webrtc-sctp" 8 documentation = "https://docs.rs/webrtc-sctp" 10 repository = "https://github.com/webrtc-rs/sctp"
|
| /webrtc/webrtc/src/ice_transport/ |
| H A D | ice_transport_test.rs | 38 .sctp() in test_ice_transport_on_selected_candidate_pair_change() 83 .sctp() in test_ice_transport_get_selected_candidate_pair() 91 .sctp() in test_ice_transport_get_selected_candidate_pair() 103 .sctp() in test_ice_transport_get_selected_candidate_pair() 111 .sctp() in test_ice_transport_get_selected_candidate_pair()
|
| /webrtc/data/ |
| H A D | Cargo.toml | 17 sctp = { version = "0.8.0", path = "../sctp", package = "webrtc-sctp" }
|
| H A D | CHANGELOG.md | 15 * Increased required `webrtc-sctp` version to `0.7.0`.
|
| /webrtc/sctp/fuzz/ |
| H A D | Cargo.toml | 2 name = "webrtc-sctp-fuzz" 15 [dependencies.webrtc-sctp]
|
| /webrtc/examples/examples/ortc/ |
| H A D | ortc.rs | 96 let sctp = Arc::new(api.new_sctp_transport(Arc::clone(&dtls))?); in main() localVariable 103 sctp.on_data_channel(Box::new(move |d: Arc<RTCDataChannel>| { in main() 156 let sctp_capabilities = sctp.get_capabilities(); in main() 191 sctp.start(remote_signal.sctp_capabilities).await?; in main() 203 let d = Arc::new(api.new_data_channel(Arc::clone(&sctp), dc_params).await?); in main() 234 sctp.stop().await?; in main()
|
| /webrtc/webrtc/ |
| H A D | Cargo.toml | 25 sctp = { version = "0.8.0", path = "../sctp", package = "webrtc-sctp" }
|
| H A D | CHANGELOG.md | 80 * `webrtc-sctp` version to `0.7.0`. 186 * [#170 always start sctp](https://github.com/webrtc-rs/webrtc/pull/170) contributed by [melekes](h…
|
| /webrtc/data/src/ |
| H A D | error.rs | 26 Sctp(#[from] sctp::Error), 44 e @ Error::Sctp(sctp::Error::ErrEof) => { in from()
|
| /webrtc/ |
| H A D | Cargo.toml | 13 "sctp",
|
| H A D | README.md | 85 …">SCTP<a href="https://crates.io/crates/webrtc-sctp"><img src="https://img.shields.io/crates/v/web…
|
| H A D | Cargo.lock | 2662 "webrtc-sctp", 2690 "webrtc-sctp", 2794 name = "webrtc-sctp"
|
| /webrtc/webrtc/src/ |
| H A D | lib.rs | 13 pub use sctp;
|
| H A D | error.rs | 398 Sctp(#[from] sctp::Error),
|
| /webrtc/webrtc/src/dtls_transport/ |
| H A D | dtls_transport_test.rs | 117 let transport = pc_offer.sctp().transport(); in test_invalid_fingerprint_causes_failed() 123 let transport = pc_answer.sctp().transport(); in test_invalid_fingerprint_causes_failed()
|
| /webrtc/webrtc/src/sctp_transport/ |
| H A D | mod.rs | 22 use sctp::association::Association; 159 association = sctp::association::Association::client(sctp::association::Config { in start()
|
| /webrtc/webrtc/src/data_channel/ |
| H A D | data_channel_test.rs | 1275 sctp: Arc<RTCSctpTransport>, field 1297 let sctp = Arc::new(api.new_sctp_transport(Arc::clone(&dtls))?); in new() localVariable 1303 sctp, in new() 1323 self.sctp.start(sig.sctp_capabilities).await?; in set_signal() 1351 let sctp_capabilities = self.sctp.get_capabilities(); in get_signal() 1364 if let Err(err) = self.sctp.stop().await { in close() 1425 .sctp in test_data_channel_ortc_e2e() 1456 .new_data_channel(Arc::clone(&stack_a.sctp), dc_params) in test_data_channel_ortc_e2e()
|
| H A D | mod.rs | 25 use sctp::stream::OnBufferedAmountLowFn;
|
| /webrtc/data/src/data_channel/ |
| H A D | mod.rs | 9 use sctp::{ 525 Poll::Ready(Err(Error::Sctp(sctp::Error::ErrTryAgain))) => {} in poll_read() 527 Poll::Ready(Err(Error::Sctp(sctp::Error::ErrEof))) => { in poll_read()
|
| H A D | data_channel_test.rs | 36 let client = Association::client(sctp::association::Config { in create_new_association_pair() 52 let server = Association::server(sctp::association::Config { in create_new_association_pair()
|
| /webrtc/webrtc/src/peer_connection/ |
| H A D | peer_connection_test.rs | 286 .sctp() in test_get_stats()
|
| H A D | mod.rs | 2042 pub fn sctp(&self) -> Arc<RTCSctpTransport> { in sctp() method
|