antenna-client-shared 0.1.0

Shared tlayer used by antenna platform implementation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod dispatcher;
mod ice;
mod signaling;
mod storage;

pub use dispatcher::{
    Event, EventType, MessageCallback, NoArgCallback, PeerCallback, RtcCallbacks,
};
pub use ice::IceServerConfig;
pub use signaling::{ClientMsg, ServerMsg};
pub use storage::IdentityStorage;

/// fsm-polling method in peer recursion fuel
pub const EXECUTE_FUEL: u64 = 1024;
/// Storage identity key
pub const STORAGE_IDENTITY_KEY: &str = "antenna_identity";