Skip to content

Commit b8b2269

Browse files
committed
feat: b2bua with ringing
1 parent 1a10d98 commit b8b2269

16 files changed

Lines changed: 427 additions & 197 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ hound = "3.5.1"
5151
ort = { version = "2.0.0-rc.10", features = ["ndarray"], optional = true }
5252
ort-sys = { version = "2.0.0-rc.10", optional = true }
5353
chrono = "0.4.41"
54-
rsipstack = "0.2.32"
54+
rsipstack = "0.2.34"
5555
#rsipstack = { path = "../rsipstack" }
5656
rsip = "0.4.0"
5757
reqwest = { version = "0.12.15", features = [

src/app.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ use crate::{
99
auth::AuthModule,
1010
call::CallModule,
1111
registrar::RegistrarModule,
12-
routing::RoutingState,
1312
server::{SipServer, SipServerBuilder},
1413
ws::sip_ws_handler,
1514
},
@@ -42,7 +41,6 @@ pub struct AppStateInner {
4241
pub active_calls: Arc<Mutex<HashMap<String, ActiveCallRef>>>,
4342
pub stream_engine: Arc<StreamEngine>,
4443
pub callrecord_sender: Option<CallRecordSender>,
45-
pub routing_state: Arc<RoutingState>,
4644
pub total_calls: AtomicU64,
4745
pub total_failed_calls: AtomicU64,
4846
pub uptime: DateTime<Utc>,
@@ -184,7 +182,6 @@ impl AppStateBuilder {
184182
active_calls: Arc::new(Mutex::new(HashMap::new())),
185183
stream_engine,
186184
callrecord_sender: callrecord_sender.clone(),
187-
routing_state: Arc::new(RoutingState::new()),
188185
total_calls: AtomicU64::new(0),
189186
total_failed_calls: AtomicU64::new(0),
190187
uptime: chrono::Utc::now(),

0 commit comments

Comments
 (0)