ftth-rsipstack 4.0.3

SIP Stack Rust library for building SIP applications (without TLS and Websocket)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod channel;
pub mod connection;
pub mod sip_addr;
pub mod stream;
pub mod tcp;
pub mod tcp_listener;
pub mod transport_layer;
pub mod udp;
pub use connection::SipConnection;
pub use connection::TransportEvent;
pub use sip_addr::SipAddr;
pub use tcp_listener::TcpListenerConnection;
pub use transport_layer::TransportLayer;

#[cfg(test)]
pub mod tests;