xphone 0.4.6

SIP telephony library with event-driven API — handles SIP signaling, RTP media, codecs, and call state
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! SIP trunk host server — accept and place calls directly with trusted SIP peers.
//!
//! Provides [`Server`] as an alternative to [`Phone`](crate::phone::Phone) for deployments
//! that receive SIP INVITEs directly from trunk providers (Twilio, Telnyx) or PBXes
//! without requiring SIP registration.
//!
//! Both modes produce the same [`Call`](crate::call::Call) object — the downstream API
//! (accept, hangup, DTMF, media, PCM access) is identical.

pub mod auth;
pub mod config;
pub mod dialog;
pub mod server;
pub(crate) mod util;