| 170 | } |
| 171 | |
| 172 | bool SFTPClient::setVerbose() { |
| 173 | return curl_easy_setopt(easy_, CURLOPT_VERBOSE, 1L) == CURLE_OK; |
| 174 | } |
| 175 | |
| 176 | bool SFTPClient::setHostKeyFile(const std::string& host_key_file_path, bool strict_host_checking) { |
| 177 | if (ssh_known_hosts_ != nullptr) { |
no outgoing calls