| 325 | } |
| 326 | |
| 327 | int FTPClientWrapperSSL::DeleteFile(const char * path) { |
| 328 | int retcode = m_client.DeleteFile(path); |
| 329 | |
| 330 | return OnReturn((retcode == UTE_SUCCESS)?0:-1); |
| 331 | } |
| 332 | |
| 333 | bool FTPClientWrapperSSL::IsConnected() { |
| 334 | if (!m_connected) |
nothing calls this directly
no outgoing calls
no test coverage detected