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
11
12
13
14
15
16
17
18
//! RTCP components
//!
//! This module contains functionality related to RTCP (RTP Control Protocol):
//! - Sender and receiver reports
//! - Application-defined packets
//! - Goodbye packets
//! - Extended reports (XR)

// Re-export modules
pub mod app_packets;
pub mod reports;

// Re-export important types and functions
pub use reports::{
    get_rtcp_stats, send_rtcp_receiver_report, send_rtcp_sender_report, set_rtcp_interval,
};

pub use app_packets::{send_rtcp_app, send_rtcp_bye, send_rtcp_xr_voip_metrics};