rvoip-rtp-core 0.2.3

RTP/RTCP protocol implementation for the rvoip stack
Documentation
1
2
3
4
5
6
7
8
9
10
//! RTCP functionality for the server transport implementation
//!
//! This module contains components for handling RTCP packets,
//! including reports and application-defined packets.

mod app_packets;
mod reports;

pub use app_packets::*;
pub use reports::*;