Home
last modified time | relevance | path

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

/openbmc/bmcweb/include/
H A Dlogin_routes.hpp74 auto dataIt = loginCredentials.find("data"); in handleLogin() local
75 if (dataIt != loginCredentials.end()) in handleLogin()
79 if (dataIt->is_array()) in handleLogin()
81 if (dataIt->size() == 2) in handleLogin()
83 nlohmann::json::iterator userIt2 = dataIt->begin(); in handleLogin()
84 nlohmann::json::iterator passIt2 = dataIt->begin() + 1; in handleLogin()
85 if (userIt2 != dataIt->end() && in handleLogin()
86 passIt2 != dataIt->end()) in handleLogin()
100 else if (dataIt->is_object()) in handleLogin()
102 nlohmann::json::iterator userIt2 = dataIt->find("username"); in handleLogin()
[all …]