| 67 | } |
| 68 | |
| 69 | int FTPClientWrapperSSL::SetTimeout(int timeout) { |
| 70 | int ret = FTPClientWrapper::SetTimeout(timeout); |
| 71 | m_client.SetConnectTimeout(timeout); |
| 72 | m_client.SetReceiveTimeOut(timeout*1000); |
| 73 | m_client.SetSendTimeOut(timeout*1000); |
| 74 | |
| 75 | return ret; |
| 76 | } |
| 77 | |
| 78 | int FTPClientWrapperSSL::Connect() { |
| 79 | if (m_connected) |
no test coverage detected