Home
last modified time | relevance | path

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

/openbmc/bmcweb/include/
H A Dsessions.hpp79 std::shared_ptr<UserSession> userSession = in fromJson() local
94 userSession->uniqueId = *thisValue; in fromJson()
98 userSession->sessionToken = *thisValue; in fromJson()
102 userSession->csrfToken = *thisValue; in fromJson()
106 userSession->username = *thisValue; in fromJson()
110 userSession->clientId = *thisValue; in fromJson()
114 userSession->clientIp = *thisValue; in fromJson()
129 if (userSession->uniqueId.empty() || userSession->username.empty() || in fromJson()
130 userSession->sessionToken.empty() || userSession->csrfToken.empty()) in fromJson()
143 userSession->lastUpdated = std::chrono::steady_clock::now(); in fromJson()
[all …]
/openbmc/bmcweb/http/
H A Dhttp_connection.hpp387 req->session = userSession; in handle()
535 if (userSession == nullptr) in getContentLengthLimit()
635 userSession = authentication::authenticate( in afterReadHeaders()
724 if (userSession != nullptr) in afterRead()
827 userSession = nullptr; in afterDoWrite()
948 std::shared_ptr<persistent_data::UserSession> userSession; member in crow::Connection