| 247 | } |
| 248 | |
| 249 | int FTPClientWrapperSSH::ReceiveFile(const TCHAR * localfile, const char * ftpfile) { |
| 250 | HANDLE hFile = OpenFile(localfile, true); |
| 251 | if (hFile == INVALID_HANDLE_VALUE) { |
| 252 | return OnReturn(-1); |
| 253 | } |
| 254 | |
| 255 | return ReceiveFile(hFile, ftpfile); |
| 256 | } |
| 257 | |
| 258 | int FTPClientWrapperSSH::ReceiveFile(HANDLE hFile, const char * ftpfile) { |
| 259 | ssize_t retcode = 0; |
nothing calls this directly
no test coverage detected