Home
last modified time | relevance | path

Searched refs:sctp (Results 1 – 24 of 24) sorted by relevance

/webrtc/sctp/
H A DREADME.md6 <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 DCHANGELOG.md1 # 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 DCargo.toml2 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 Dice_transport_test.rs38 .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 DCargo.toml17 sctp = { version = "0.8.0", path = "../sctp", package = "webrtc-sctp" }
H A DCHANGELOG.md15 * Increased required `webrtc-sctp` version to `0.7.0`.
/webrtc/sctp/fuzz/
H A DCargo.toml2 name = "webrtc-sctp-fuzz"
15 [dependencies.webrtc-sctp]
/webrtc/examples/examples/ortc/
H A Dortc.rs96 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 DCargo.toml25 sctp = { version = "0.8.0", path = "../sctp", package = "webrtc-sctp" }
H A DCHANGELOG.md80 * `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 Derror.rs26 Sctp(#[from] sctp::Error),
44 e @ Error::Sctp(sctp::Error::ErrEof) => { in from()
/webrtc/
H A DCargo.toml13 "sctp",
H A DREADME.md85 …">SCTP<a href="https://crates.io/crates/webrtc-sctp"><img src="https://img.shields.io/crates/v/web…
H A DCargo.lock2662 "webrtc-sctp",
2690 "webrtc-sctp",
2794 name = "webrtc-sctp"
/webrtc/webrtc/src/
H A Dlib.rs13 pub use sctp;
H A Derror.rs398 Sctp(#[from] sctp::Error),
/webrtc/webrtc/src/dtls_transport/
H A Ddtls_transport_test.rs117 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 Dmod.rs22 use sctp::association::Association;
159 association = sctp::association::Association::client(sctp::association::Config { in start()
/webrtc/webrtc/src/data_channel/
H A Ddata_channel_test.rs1275 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 Dmod.rs25 use sctp::stream::OnBufferedAmountLowFn;
/webrtc/data/src/data_channel/
H A Dmod.rs9 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 Ddata_channel_test.rs36 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 Dpeer_connection_test.rs286 .sctp() in test_get_stats()
H A Dmod.rs2042 pub fn sctp(&self) -> Arc<RTCSctpTransport> { in sctp() method