| 230 | } |
| 231 | |
| 232 | bool SFTPClient::setConnectionTimeout(int64_t timeout) { |
| 233 | return curl_easy_setopt(easy_, CURLOPT_CONNECTTIMEOUT_MS, timeout) == CURLE_OK; |
| 234 | } |
| 235 | |
| 236 | void SFTPClient::setDataTimeout(int64_t timeout) { |
| 237 | data_timeout_ = timeout; |
no outgoing calls
no test coverage detected