goog_cc 0.1.0

A direct Rust port of the Google Congestion Control algorithm from WebRTC
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod data_rate;
mod data_size;
mod frequency;
// unused?
// mod is_newer;
mod time_delta;
mod timestamp;
mod unit_base;

pub use data_rate::*;
pub use data_size::*;
pub use frequency::*;
//pub(crate) use is_newer::*;
pub use time_delta::*;
pub use timestamp::*;

pub(crate) use unit_base::*;