Skip to content

Commit a933d4a

Browse files
committed
[Darwin] MTRDevice _deviceMayBeReachable should mark inactive sessions as defunct
1 parent 2bd5aa3 commit a933d4a

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

src/darwin/Framework/CHIP/MTRDevice_Concrete.mm

+20-1
Original file line numberDiff line numberDiff line change
@@ -4746,9 +4746,28 @@ - (void)_deviceMayBeReachable
47464746
[self _resetSubscription];
47474747
}
47484748

4749+
auto peerScopeId = commissioner->GetPeerScopedId(self->_nodeID.unsignedLongLongValue);
47494750
auto caseSessionMgr = commissioner->CASESessionMgr();
47504751
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+
});
47524771

47534772
std::lock_guard lock(self->_lock);
47544773
// Use _ensureSubscriptionForExistingDelegates so that the subscriptions

0 commit comments

Comments
 (0)