| 254 | } |
| 255 | |
| 256 | int FTPClientWrapperSSL::RmDir(const char * path) { |
| 257 | int retcode = m_client.RmDir(path); |
| 258 | |
| 259 | return OnReturn((retcode == UTE_SUCCESS)?0:-1); |
| 260 | } |
| 261 | |
| 262 | int FTPClientWrapperSSL::MkFile(const char * path) { |
| 263 | MemoryDataSource mdata(NULL, 0, false); |
nothing calls this directly
no outgoing calls
no test coverage detected