antenna_client_shared/lib.rs
1mod dispatcher;
2mod ice;
3mod signaling;
4mod storage;
5
6pub use dispatcher::{
7 Event, EventType, MessageCallback, NoArgCallback, PeerCallback, RtcCallbacks,
8};
9pub use ice::IceServerConfig;
10pub use signaling::{ClientMsg, ServerMsg};
11pub use storage::IdentityStorage;
12
13/// fsm-polling method in peer recursion fuel
14pub const EXECUTE_FUEL: u64 = 1024;
15/// Storage identity key
16pub const STORAGE_IDENTITY_KEY: &str = "antenna_identity";