rtc-ice 0.9.0

RTC ICE in Rust
Documentation
#![warn(rust_2018_idioms)]
#![allow(dead_code)]

pub mod agent;
pub mod attributes;
pub mod candidate;
pub mod mdns;
pub mod network_type;
pub mod rand;
pub mod state;
pub mod stats;
pub mod tcp_type;
pub mod url;

pub use agent::{
    Agent, Credentials, Event,
    agent_config::AgentConfig,
    agent_stats::{CandidatePairStats, CandidateStats},
};