rvoip-rtp-core 0.2.0

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
//! Buffer management components
//!
//! This module contains functionality related to high-performance buffer management:
//! - Transmit buffer for outgoing packets
//! - Buffer statistics and monitoring
//! - Packet priority handling

// Re-export modules
pub mod stats;
pub mod transmit;

// Re-export important types and functions
pub use transmit::{
    init_transmit_buffer, send_frame_with_priority, set_priority_threshold,
    update_transmit_buffer_config,
};

pub use stats::get_transmit_buffer_stats;