rsiprtp 0.4.1

Modular SIP/RTP communications stack for Rust with Sans-IO state machines
Documentation
1
2
3
4
5
6
7
8
9
//! Core types, errors, and configuration for the rsiprtp SIP/RTP stack.

pub mod config;
pub mod error;
pub(crate) mod util;

pub use config::*;
pub use error::*;
pub(crate) use util::{random_u16, random_u32, random_u64};