| 35 | extern char * _HostsFile; |
| 36 | |
| 37 | FTPClientWrapperSSH::FTPClientWrapperSSH(const char * host, int port, const char * user, const char * password) : |
| 38 | FTPClientWrapper(Client_SSH, host, port, user, password), |
| 39 | m_useAgent(false), |
| 40 | m_acceptedMethods(SSH_AUTH_METHOD_PASSWORD) |
| 41 | { |
| 42 | m_keyFile = SU::DupString(TEXT("")); |
| 43 | m_passphrase = SU::strdup(""); |
| 44 | } |
| 45 | |
| 46 | FTPClientWrapperSSH::~FTPClientWrapperSSH() { |
| 47 | SU::FreeTChar(m_keyFile); |
nothing calls this directly
no outgoing calls
no test coverage detected