str0m-proto 0.2.0

Internal crate for str0m. Not intended for direct use.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Shared protocol types and traits for str0m.

/// Targeted MTU
pub const DATAGRAM_MTU: usize = 1150;

/// Warn if any packet we are about to send is above this size.
pub const DATAGRAM_MTU_WARN: usize = 1280;

mod bandwidth;
pub use bandwidth::{Bitrate, DataSize};

pub mod crypto;