We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a10d98 commit b8b2269Copy full SHA for b8b2269
16 files changed
Cargo.toml
@@ -51,7 +51,7 @@ hound = "3.5.1"
51
ort = { version = "2.0.0-rc.10", features = ["ndarray"], optional = true }
52
ort-sys = { version = "2.0.0-rc.10", optional = true }
53
chrono = "0.4.41"
54
-rsipstack = "0.2.32"
+rsipstack = "0.2.34"
55
#rsipstack = { path = "../rsipstack" }
56
rsip = "0.4.0"
57
reqwest = { version = "0.12.15", features = [
src/app.rs
@@ -9,7 +9,6 @@ use crate::{
9
auth::AuthModule,
10
call::CallModule,
11
registrar::RegistrarModule,
12
- routing::RoutingState,
13
server::{SipServer, SipServerBuilder},
14
ws::sip_ws_handler,
15
},
@@ -42,7 +41,6 @@ pub struct AppStateInner {
42
41
pub active_calls: Arc<Mutex<HashMap<String, ActiveCallRef>>>,
43
pub stream_engine: Arc<StreamEngine>,
44
pub callrecord_sender: Option<CallRecordSender>,
45
- pub routing_state: Arc<RoutingState>,
46
pub total_calls: AtomicU64,
47
pub total_failed_calls: AtomicU64,
48
pub uptime: DateTime<Utc>,
@@ -184,7 +182,6 @@ impl AppStateBuilder {
184
182
active_calls: Arc::new(Mutex::new(HashMap::new())),
185
183
stream_engine,
186
callrecord_sender: callrecord_sender.clone(),
187
- routing_state: Arc::new(RoutingState::new()),
188
total_calls: AtomicU64::new(0),
189
total_failed_calls: AtomicU64::new(0),
190
uptime: chrono::Utc::now(),
0 commit comments