Re: CFtpConnection::PutFile timeout
"beluchin" <beluchin@discussions.microsoft.com> wrote in message
news:1B65B935-9DCB-4C5A-B1C9-BBD034DBBD86@microsoft.com...
AFAIK, all you can do is monitor from another thread. You'd have to do
that
even using FtpPutFile asynchronously.
From various places on the Internet, I found that one can use the
INTERNET_OPTION_SEND_TIMEOUT option to set the timeout on ftp puts:
// //////////////////////////////////////////
CInternetSession session;
session.SetOption(INTERNET_OPTION_SEND_TIMEOUT, 10000); // 10 secs.
CFtpConnection* pftp = session.GetFtpConnection(...);
if ( !pftp->PutFile(...) ) { // how to check what the reason for the
failure
was?
...
}
// //////////////////////////////////////////
Two questions:
1. Why wouldn't this work? It does not require a thread to monitor for
time
outs (at least in the client code)
That should work fine I would think. Thanks for pointing that out to me.
2. How to find out what the reason for the failure was inside the if
statement above?
If (Ftp)PutFile() returns an error, GetLastError() would probably return
ERROR_INTERNET_TIMEOUT.
Mark
--
Mark Salsbery
Microsoft MVP - Visual C++
Thank you very much:
Abel Quiros