We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c35dbd0 commit 3557329Copy full SHA for 3557329
src/app/icd/ICDCheckInSender.cpp
@@ -69,11 +69,11 @@ CHIP_ERROR ICDCheckInSender::SendCheckInMsg(const Transport::PeerAddress & addr)
69
70
VerifyOrReturnError(mExchangeManager->GetSessionManager() != nullptr, CHIP_ERROR_INTERNAL);
71
72
+ // Using default MRP since we are not doing MRP in this context
73
Optional<SessionHandle> session =
74
mExchangeManager->GetSessionManager()->CreateUnauthenticatedSession(addr, GetDefaultMRPConfig());
75
VerifyOrReturnError(session.HasValue(), CHIP_ERROR_NO_MEMORY);
76
- // Using default MRP since we are not doing MRP in this context
77
Messaging::ExchangeContext * exchangeContext = mExchangeManager->NewContext(session.Value(), nullptr);
78
79
VerifyOrReturnError(exchangeContext != nullptr, CHIP_ERROR_NO_MEMORY);
0 commit comments