| 238 | } |
| 239 | |
| 240 | int FTPClientWrapperSSH::SendFile(const TCHAR * localfile, const char * ftpfile) { |
| 241 | HANDLE hFile = OpenFile(localfile, false); |
| 242 | if (hFile == INVALID_HANDLE_VALUE) { |
| 243 | return OnReturn(-1); |
| 244 | } |
| 245 | |
| 246 | return SendFile(hFile, ftpfile); |
| 247 | } |
| 248 | |
| 249 | int FTPClientWrapperSSH::ReceiveFile(const TCHAR * localfile, const char * ftpfile) { |
| 250 | HANDLE hFile = OpenFile(localfile, true); |
nothing calls this directly
no test coverage detected