Implementation of set_cookie_file method.
| 20 | |
| 21 | // Implementation of set_cookie_file method. |
| 22 | void curl_cookie::set_file(const string& file = "") { |
| 23 | this->easy.add<CURLOPT_COOKIEFILE>(file.c_str()); |
| 24 | } |
| 25 | |
| 26 | // Implementation of set_cookie_list method. |
| 27 | void curl_cookie::set(curl::cookie &cookie) { |
nothing calls this directly
no outgoing calls
no test coverage detected