udp_prague 0.1.0

A Rust implementation of the Prague congestion control protocol for UDP-based applications.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Demo application compatibility layer.
//!
//! This module holds the CLI/config/reporting code and the JSON writer used by
//! the reference-style example binaries. Library users can disable the
//! `demo-app` feature to exclude this surface entirely.

pub mod app;
pub mod json_writer;

pub use self::app::{AppStuff, REPT_PERIOD};