connections work

This commit is contained in:
Christien Rioux
2023-07-14 17:13:58 -04:00
parent 6c2aaa16c6
commit 167374969d
3 changed files with 18 additions and 1 deletions
@@ -308,6 +308,12 @@ pub trait NodeRefBase: Sized {
})
}
fn clear_last_connection(&self, connection_descriptor: ConnectionDescriptor) {
self.operate_mut(|rti, e| {
e.clear_last_connection(connection_descriptor);
})
}
fn has_any_dial_info(&self) -> bool {
self.operate(|_rti, e| {
for rtd in RoutingDomain::all() {