File tree 1 file changed +20
-1
lines changed
src/darwin/Framework/CHIP
1 file changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -4746,9 +4746,28 @@ - (void)_deviceMayBeReachable
4746
4746
[self _resetSubscription];
4747
4747
}
4748
4748
4749
+ auto peerScopeId = commissioner->GetPeerScopedId(self->_nodeID.unsignedLongLongValue);
4749
4750
auto caseSessionMgr = commissioner->CASESessionMgr();
4750
4751
VerifyOrDie(caseSessionMgr != nullptr);
4751
- caseSessionMgr->ReleaseSession(commissioner->GetPeerScopedId(self->_nodeID.unsignedLongLongValue));
4752
+ caseSessionMgr->ReleaseSession(peerScopeId);
4753
+
4754
+ // TODO: make this configurable - for now use 1.5 second
4755
+ #define MTRDEVICE_ACTIVE_SESSION_THRESHOLD_MILLISECONDS (15000)
4756
+ auto sessionMgr = commissioner->SessionMgr();
4757
+ VerifyOrDie(sessionMgr != nullptr);
4758
+ sessionMgr->ForEachMatchingSession(peerScopeId, [](auto * session) {
4759
+ auto secureSession = session->AsSecureSession();
4760
+ if (!secureSession) {
4761
+ return;
4762
+ }
4763
+
4764
+ auto threshold = System::Clock::Timeout(MTRDEVICE_ACTIVE_SESSION_THRESHOLD_MILLISECONDS);
4765
+ if ((System::SystemClock().GetMonotonicTimestamp() - session->GetLastPeerActivityTime()) < threshold) {
4766
+ return;
4767
+ }
4768
+
4769
+ session->MarkAsDefunct();
4770
+ });
4752
4771
4753
4772
std::lock_guard lock(self->_lock);
4754
4773
// Use _ensureSubscriptionForExistingDelegates so that the subscriptions
You can’t perform that action at this time.
0 commit comments