antenna-client-web 0.1.0

Web-over-WASM platform implementation for the antenna P2P mesh protocol.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod dispatcher;
mod driver;
mod peer;
#[cfg(feature = "signaling-client")]
mod signaling;
mod storage;
mod utils;
mod webrtc;

pub use dispatcher::{js_message, js_no_arg, js_peer};
pub use peer::Peer;
#[cfg(feature = "signaling-client")]
pub use signaling::SignalingClient;
pub use storage::Storage;

pub(crate) use driver::Driver;
pub(crate) use utils::JsEventCallback;
pub(crate) use webrtc::{ConnectionManager, DataChannelManager, PeerConnectionManager};