rtmp_rs/server/
mod.rs

1//! RTMP server implementation
2//!
3//! This module provides the server-side RTMP implementation:
4//! - TCP listener for accepting connections
5//! - Per-connection handler
6//! - Handler trait for application callbacks
7
8pub mod config;
9pub mod connection;
10pub mod handler;
11pub mod listener;
12
13pub use config::ServerConfig;
14pub use handler::{AuthResult, RtmpHandler};
15pub use listener::RtmpServer;