MCPcopy Create free account
hub / github.com/ClickHouse/ClickHouse / getCookies

Method getCookies

base/poco/Net/src/HTTPRequest.cpp:146–154  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

144
145
146void HTTPRequest::getCookies(NameValueCollection& cookies) const
147{
148 NameValueCollection::ConstIterator it = find(COOKIE);
149 while (it != end() && Poco::icompare(it->first, COOKIE) == 0)
150 {
151 splitParameters(it->second.begin(), it->second.end(), cookies);
152 ++it;
153 }
154}
155
156
157bool HTTPRequest::hasCredentials() const

Callers 1

initializeMethod · 0.45

Calls 5

findFunction · 0.50
endFunction · 0.50
icompareFunction · 0.50
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected