i wanna to upload files to ftp server (ftp ip, username, password) with proxy server address (ip, port) using c++.
i successfuly to upload files to ftp without proxy
i have proxy uRL : ftp://.../ username : ** password : **
using the following code
// Stream to which the file to be upload is written
System::IO::Stream ^_Stream = _FtpWebRequest->GetRequestStream();
// Read from the file stream 2kb at a time
int contentLen = _FileStream->Read(buff, 0, buffLength);
// Till Stream content ends
while (contentLen != 0)
{
// Write Content from the file stream to the FTP Upload Stream
_Stream->Write(buff, 0, contentLen);
contentLen = _FileStream->Read(buff, 0, buffLength);
}
// Close the file stream and the Request Stream
_Stream->Close();
delete _Stream;
_FileStream->Close();
delete _FileStream;
now i have a proxy server and i wanna to use it proxy server ip : 127.0.0.1 and port no : **
any helping.