Home
last modified time | relevance | path

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

/haiku/src/kits/network/libnetservices2/
H A DHttpSession.cpp161 std::map<Host, int32> fConnectionCount; member in BHttpSession::Impl
551 if (fConnectionCount.size() >= fMaxHosts.load()) { in GetRequestsForControlThread()
552 for (auto it = fConnectionCount.begin(); it != fConnectionCount.end();) { in GetRequestsForControlThread()
554 it = fConnectionCount.erase(it); in GetRequestsForControlThread()
565 auto it = fConnectionCount.find(host); in GetRequestsForControlThread()
566 if (it != fConnectionCount.end()) { in GetRequestsForControlThread()
580 if (fConnectionCount.size() == fMaxHosts.load()) { in GetRequestsForControlThread()
588 auto [newIt, success] = fConnectionCount.insert({host, 1}); in GetRequestsForControlThread()