Home
last modified time | relevance | path

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

/openbmc/bmcweb/include/
H A Dlogin_routes.hpp62 auto dataIt = loginCredentials.find("data"); in handleLogin() local
63 if (dataIt != loginCredentials.end()) in handleLogin()
67 if (dataIt->is_array()) in handleLogin()
69 if (dataIt->size() == 2) in handleLogin()
71 nlohmann::json::iterator userIt2 = dataIt->begin(); in handleLogin()
72 nlohmann::json::iterator passIt2 = dataIt->begin() + 1; in handleLogin()
73 if (userIt2 != dataIt->end() && in handleLogin()
74 passIt2 != dataIt->end()) in handleLogin()
88 else if (dataIt->is_object()) in handleLogin()
90 nlohmann::json::iterator userIt2 = dataIt->find("username"); in handleLogin()
[all …]