| 171 | } |
| 172 | |
| 173 | CURLcode CurlHandleManager::Handle::appendCookies (const CookiesList& cookies)noexcept |
| 174 | { |
| 175 | for (const Cookie& cookie : cookies) |
| 176 | { |
| 177 | const CURLcode result = appendCookie (cookie); |
| 178 | |
| 179 | if (result != CURLE_OK) |
| 180 | return result; |
| 181 | } |
| 182 | |
| 183 | return CURLE_OK; |
| 184 | } |
| 185 | |
| 186 | void CurlHandleManager::Handle::appendHeader (const Header& header) |
| 187 | { |