async-datachannel

License Cargo Documentation

Async wrapper for the [datachannel] crate. For a complete example check the examples directory.

Note that this crate currently is made to work only with the tokio runtime. If you're interested in supporting other runtimes, let me know.

Quickstart

```rust use async_datachannel::{Message, PeerConnection, PeerId, RtcConfig}; use futures::io::{AsyncReadExt, AsyncWriteExt, channel::mpsc};

let iceservers = vec!["stun:stun.l.google.com:19302"]; let conf = RtcConfig::new(&iceservers); let (txsigoutbound, mut rxsigoutbound) = mpsc::channel(32); let (txsiginbound, rxsiginbound) = mpsc::channel(32); let listener = PeerConnection::new(&conf, (txsigoutbound, rxsiginbound))?;

// TODO: Wire up tx_sig_inbound and rx_sig_outbound to a signalling // mechanism.

let mut dc = listener.dial("Hangout").await?; dc.write(b"Hello").await?;

let mut buf = vec![0; 32]; let n = dc.read(&mut buf).await?; assert_eq!(b"World", &buf[..n]); ```

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.