| 248 | } |
| 249 | |
| 250 | int FTPClientWrapperSSL::MkDir(const char * path) { |
| 251 | int retcode = m_client.MkDir(path); |
| 252 | |
| 253 | return OnReturn((retcode == UTE_SUCCESS)?0:-1); |
| 254 | } |
| 255 | |
| 256 | int FTPClientWrapperSSL::RmDir(const char * path) { |
| 257 | int retcode = m_client.RmDir(path); |
nothing calls this directly
no outgoing calls
no test coverage detected