Various stuff

Comment fixes
Added some more debug support, not used yet (linux/libcwd only),
I used it, but won't commit the code that did.
Pass time_time parameter from post2() to prepRequest; only
used by mesh uploading at the moment.
This commit is contained in:
Aleric Inglewood
2012-09-24 16:55:34 +02:00
parent 3e22553d7e
commit 48702b1ed9
4 changed files with 137 additions and 7 deletions

View File

@@ -1185,7 +1185,7 @@ void CurlEasyRequest::applyDefaultOptions(void)
void CurlEasyRequest::finalizeRequest(std::string const& url)
{
llassert(!mRequestFinalized);
mResult = CURLE_FAILED_INIT; // General error code, the final code is written here in MultiHandle::check_run_count when msg is CURLMSG_DONE.
mResult = CURLE_FAILED_INIT; // General error code; the final result code is stored here by MultiHandle::check_run_count when msg is CURLMSG_DONE.
lldebugs << url << llendl;
#ifdef SHOW_ASSERT
// Do a sanity check on the headers.
@@ -1266,7 +1266,8 @@ void CurlEasyRequest::removed_from_multi_handle(AICurlEasyRequest_wat& curl_easy
// CurlResponderBuffer
static int const HTTP_REDIRECTS_DEFAULT = 10;
static S32 const CURL_REQUEST_TIMEOUT = 30; // Seconds per operation.
static S32 const CURL_REQUEST_TIMEOUT = 30; // The minimum value of the CURLOPT_TIMEOUT option (which is the maximum
// time in seconds that we allow a libcurl transfer operation to take).
LLChannelDescriptors const CurlResponderBuffer::sChannels;