Implementation of the get method.
| 14 | namespace curl { |
| 15 | // Implementation of the get method. |
| 16 | curlcpp_cookies curl_cookie::get() const NOEXCEPT { |
| 17 | auto info = this->easy.get_info<CURLINFO_COOKIELIST>(); |
| 18 | return info.get(); |
| 19 | } |
| 20 | |
| 21 | // Implementation of set_cookie_file method. |
| 22 | void curl_cookie::set_file(const string& file = "") { |
no outgoing calls
no test coverage detected