| 121 | } |
| 122 | |
| 123 | CBackend::OnInitReturnValue CBackendFileTransfer::OnInit() |
| 124 | { |
| 125 | OnInitReturnValue nRet = OnInitReturnValue::Fail; |
| 126 | if(m_pPara->GetProtocol() == CParameterFileTransfer::Protocol::SFTP) |
| 127 | nRet = InitSFTP(); |
| 128 | return nRet; |
| 129 | } |
| 130 | |
| 131 | int CBackendFileTransfer::OnClean() |
| 132 | { |
nothing calls this directly
no test coverage detected