Home
last modified time | relevance | path

Searched refs:maxRetryCount (Results 1 – 2 of 2) sorted by relevance

/openbmc/phosphor-net-ipmid/sol/
H A Dsol_context.cpp18 uint8_t maxRetryCount, uint8_t sendThreshold, uint8_t instance, in Context() argument
20 accumulateTimer(*io), retryTimer(*io), maxRetryCount(maxRetryCount), in Context()
21 retryCounter(maxRetryCount), sendThreshold(sendThreshold), in Context()
28 std::shared_ptr<boost::asio::io_context> io, uint8_t maxRetryCount, in makeContext() argument
31 auto ctx = std::make_shared<Context>(io, maxRetryCount, sendThreshold, in makeContext()
161 retryCounter = maxRetryCount; in processInboundPayload()
337 retryCounter = maxRetryCount; in retryTimerHandler()
H A Dsol_context.hpp178 std::shared_ptr<boost::asio::io_context> io, uint8_t maxRetryCount,
192 Context(std::shared_ptr<boost::asio::io_context> io, uint8_t maxRetryCount,
206 const uint8_t maxRetryCount = 0; member in sol::Context