vox-rtc-server 0.3.5

Server-side Rust SDK for controlling Vox-hosted WebRTC sessions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod client;
mod error;
mod gateway;
mod session;
mod socket;
mod types;

pub use client::{
    ControlledSession, SessionOptions, VoxRtcServerClient, VoxRtcServerClientOptions,
};
pub use error::{Result, VoxRtcError};
pub use gateway::{
    GatewayClosedContext, GatewayOptions, GatewaySessionContext, VoxRtcGateway,
};
pub use session::{Listener, VoxRtcControlSession};
pub use types::*;