ringo-core 0.11.0

Shared baresip FFI backend and call engine for the ringo tools
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Shared engine for the ringo tools: backend abstraction and the phone
//! command interface. Kept free of any TUI or ringo-specific configuration so
//! it can back both the `ringo` softphone and the `ringo-flow` scenario runner.

pub mod account;
pub mod backend;
pub mod event;
pub mod log;
pub mod phone;

pub use backend::{
    call_count, is_registered, received_audio, sent_audio, shutdown, sip_trace_file,
    sip_trace_stderr,
};

mod baresip;