SendFilePASV Sends the specified local file to the given destination on the currently connected FTP site. This routine duplicates the SendFilePASV() member, but in this routine the client originates data connections. Client side origination of data connections is preferred for use in firewall controlled environments. Params sourceFile - name of
| 1040 | UTE_CONNECT_TIMEOUT - connection time out |
| 1041 | ****************************************/ |
| 1042 | int CUT_FTPClient::SendFilePASV(LPCTSTR sourceFile,LPCSTR destFile){ |
| 1043 | CUT_FileDataSource ds(sourceFile); |
| 1044 | return SendFilePASV(ds, destFile); |
| 1045 | } |
| 1046 | |
| 1047 | /*************************************** |
| 1048 | SendFilePASV |
nothing calls this directly
no test coverage detected