rtsp-rs 0.1.8

RTSP server library for live media streaming
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Network transport layer for RTSP signaling and RTP media delivery.
//!
//! RTSP uses a split transport model:
//!
//! - **TCP** ([`tcp`]): carries RTSP request/response signaling. One TCP
//!   connection per client, with a thread per connection.
//!
//! - **UDP** ([`udp`]): carries RTP media packets. A single ephemeral
//!   socket is shared for all outbound RTP delivery.
//!
//! Future: interleaved TCP transport (RFC 2326 ยง10.12) will multiplex
//! RTP data onto the RTSP TCP connection using `$` framing.

pub mod tcp;
pub mod udp;

pub use udp::UdpTransport;