Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wngr/libp2p-webrtc
WebRTC transport for libp2p (native and wasm)
https://github.com/wngr/libp2p-webrtc
datachannel libp2p rust signaling webrtc
Last synced: 13 days ago
JSON representation
WebRTC transport for libp2p (native and wasm)
- Host: GitHub
- URL: https://github.com/wngr/libp2p-webrtc
- Owner: wngr
- License: apache-2.0
- Created: 2021-09-17T18:29:05.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-11-29T08:07:11.000Z (almost 2 years ago)
- Last Synced: 2024-10-25T13:44:33.514Z (21 days ago)
- Topics: datachannel, libp2p, rust, signaling, webrtc
- Language: Rust
- Homepage:
- Size: 225 KB
- Stars: 29
- Watchers: 6
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE2.md
Awesome Lists containing this project
README
# libp2p-webrtc
**NOTE: webrtc support has been added to rust-libp2p. browser-to-browser is not
yet supported. This crate will stay as-is and not receive any maintenance
efforts anymore.**[![License](https://img.shields.io/badge/license-MIT%2FApache--2.0-blue.svg)](https://github.com/wngr/libp2p-webrtc)
[![Cargo](https://img.shields.io/crates/v/libp2p-webrtc.svg)](https://crates.io/crates/libp2p-webrtc)
[![Documentation](https://docs.rs/libp2p-webrtc/badge.svg)](https://docs.rs/libp2p-webrtc)WebRTC transport for rust-libp2p for both native and WebAssembly (browser). For
initiating a connection between two peers, both of them need to connect to the
same WebSocket signaling server (via a call to `listen_on`). Either one can dial
the other peer by using the `p2p-webrtc-star` protocol. Note, that this crate is
currently not interoperable with the respective js-libp2p and go-libp2p
implementations.Additional, a signaling server implementation is provided within the crate.
## Quickstart
To compile this crate, you need `gcc g++ libssl-dev make cmake clang
pkg-config`.```rust
let base_transport = WebRtcTransport::new(peer_id, vec!["stun:stun.l.google.com:19302"]);
let transport = base_transport.upgrade().....
swarm
.listen_on(
"/ip4/127.0.0.1/tcp/8001/ws/p2p-webrtc-star"
.parse()
.unwrap(),
)
.unwrap();
```## License
Licensed under either of
* Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
* MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)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.