rsiprtp 0.4.1

Modular SIP/RTP communications stack for Rust with Sans-IO state machines
Documentation
//! SIP dialog management.
//!
//! Implements dialog state machines for INVITE-initiated sessions per RFC 3261.
//!
//! # Overview
//!
//! A dialog is a peer-to-peer SIP relationship between two UAs that persists
//! for some time. It facilitates sequencing of messages between the UAs and
//! proper routing of requests between both of them.
//!
//! # Main Types
//!
//! - [`DialogId`]: Unique identifier for a dialog (Call-ID + local tag + remote tag)
//! - [`InviteDialog`]: State machine for INVITE-initiated dialogs
//! - [`DialogManager`]: Manages multiple dialogs, routes messages

pub(crate) mod invite;
pub(crate) mod manager;
pub(crate) mod state;

// Re-export main types
pub use invite::{
    Action as DialogAction, Event as DialogEvent, InviteDialog, Role, TerminationReason,
};
pub use manager::{DialogHandle, DialogManager, ManagerAction, ManagerEvent};
pub use state::{DialogId, DialogInfo, DialogState, RouteSet};