rustpbx 0.4.3

A SIP PBX implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod app;
pub mod auth;
pub mod gateway;
pub mod handler;
pub mod processor;
pub mod proto;
pub mod session;
pub mod transfer;

pub use app::*;
pub use auth::*;
pub use gateway::{RwiGatewayRef, *};
pub use handler::*;
pub use processor::*;
pub use session::*;

pub use proto::{CallIncomingData, RwiCommand, RwiEvent};