| 35 | } |
| 36 | |
| 37 | FTPClientWrapper::~FTPClientWrapper() { |
| 38 | if (m_connected) //cannot simply call Disconnect as it's virtual |
| 39 | OutErr("[FTPClientWrapper] connection active in destructor"); |
| 40 | |
| 41 | SU::free(m_hostname); |
| 42 | SU::free(m_username); |
| 43 | SU::free(m_password); |
| 44 | } |
| 45 | |
| 46 | Client_Type FTPClientWrapper::GetType() { |
| 47 | return m_type; |
nothing calls this directly
no outgoing calls
no test coverage detected