rvoip-rtp-core 0.1.3

RTP packet encoding/decoding, RTCP support for rvoip
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 reports;
mod app_packets;

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