| 144 | |
| 145 | |
| 146 | void 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 | |
| 157 | bool HTTPRequest::hasCredentials() const |