Home
last modified time | relevance | path

Searched refs:sessionTimeout (Results 1 – 3 of 3) sorted by relevance

/openbmc/bmcweb/redfish-core/lib/
H A Dredfish_sessions.hpp330 std::optional<int64_t> sessionTimeout; in handleSessionServicePatch() local
332 sessionTimeout)) in handleSessionServicePatch()
337 if (sessionTimeout) in handleSessionServicePatch()
344 if (*sessionTimeout <= 86400 && *sessionTimeout >= 30) in handleSessionServicePatch()
346 std::chrono::seconds sessionTimeoutInseconds(*sessionTimeout); in handleSessionServicePatch()
350 std::to_string(*sessionTimeout)); in handleSessionServicePatch()
354 messages::propertyValueNotInList(asyncResp->res, *sessionTimeout, in handleSessionServicePatch()
/openbmc/phosphor-ipmi-blobs/
H A Dmanager.hpp82 BlobManager(std::chrono::seconds sessionTimeout = defaultSessionTimeout) : in BlobManager() argument
83 sessionTimeout(sessionTimeout) in BlobManager()
270 std::chrono::seconds sessionTimeout; member in blobs::BlobManager
H A Dmanager.cpp303 if (timeNow - sessions[sessionId].lastActionTime >= sessionTimeout) in cleanUpStaleSessions()