diff options
| -rw-r--r-- | indra/llcorehttp/examples/http_texture_load.cpp | 4 | ||||
| -rw-r--r-- | indra/llcorehttp/tests/test_httprequest.hpp | 20 | ||||
| -rw-r--r-- | indra/llcrashlogger/llcrashlogger.cpp | 2 | ||||
| -rw-r--r-- | indra/llimage/tests/llimageworker_test.cpp | 6 | 
4 files changed, 6 insertions, 26 deletions
diff --git a/indra/llcorehttp/examples/http_texture_load.cpp b/indra/llcorehttp/examples/http_texture_load.cpp index c7376042b3..cc53b20add 100644 --- a/indra/llcorehttp/examples/http_texture_load.cpp +++ b/indra/llcorehttp/examples/http_texture_load.cpp @@ -469,11 +469,11 @@ bool WorkingSet::reload(LLCore::HttpRequest * hr, LLCore::HttpOptions::ptr_t & o  		LLCore::HttpHandle handle;  		if (offset || length)  		{ -			handle = hr->requestGetByteRange(0, 0, buffer, offset, length, opt, mHeaders, LLCore::HttpHandler::ptr_t(this, NoOpDeletor)); +			handle = hr->requestGetByteRange(0, buffer, offset, length, opt, mHeaders, LLCore::HttpHandler::ptr_t(this, NoOpDeletor));  		}  		else  		{ -            handle = hr->requestGet(0, 0, buffer, opt, mHeaders, LLCore::HttpHandler::ptr_t(this, NoOpDeletor)); +            handle = hr->requestGet(0, buffer, opt, mHeaders, LLCore::HttpHandler::ptr_t(this, NoOpDeletor));  		}  		if (! handle)  		{ diff --git a/indra/llcorehttp/tests/test_httprequest.hpp b/indra/llcorehttp/tests/test_httprequest.hpp index 154f6b12e9..3eaac10aeb 100644 --- a/indra/llcorehttp/tests/test_httprequest.hpp +++ b/indra/llcorehttp/tests/test_httprequest.hpp @@ -614,7 +614,6 @@ void HttpRequestTestObjectType::test<7>()  		// Issue a GET that can't connect  		mStatus = HttpStatus(HttpStatus::EXT_CURL_EASY, CURLE_COULDNT_CONNECT);  		HttpHandle handle = req->requestGetByteRange(HttpRequest::DEFAULT_POLICY_ID, -													 0U,  													 "http://127.0.0.1:2/nothing/here",  													 0,  													 0, @@ -716,7 +715,6 @@ void HttpRequestTestObjectType::test<8>()  		// Issue a GET that *can* connect  		mStatus = HttpStatus(200);  		HttpHandle handle = req->requestGet(HttpRequest::DEFAULT_POLICY_ID, -											0U,  											url_base,  											HttpOptions::ptr_t(),                                              HttpHeaders::ptr_t(), @@ -812,7 +810,6 @@ void HttpRequestTestObjectType::test<9>()  		// Issue a GET that *can* connect  		mStatus = HttpStatus(200);  		HttpHandle handle = req->requestGetByteRange(HttpRequest::DEFAULT_POLICY_ID, -													 0U,  													 url_base,  													 0,  													 0, @@ -913,7 +910,6 @@ void HttpRequestTestObjectType::test<10>()  		body->append(body_text, strlen(body_text));  		mStatus = HttpStatus(200);  		HttpHandle handle = req->requestPut(HttpRequest::DEFAULT_POLICY_ID, -											0U,  											url_base,  											body,                                              HttpOptions::ptr_t(), @@ -1020,7 +1016,6 @@ void HttpRequestTestObjectType::test<11>()  		body->append(body_text, strlen(body_text));  		mStatus = HttpStatus(200);  		HttpHandle handle = req->requestPost(HttpRequest::DEFAULT_POLICY_ID, -											 0U,  											 url_base,  											 body,                                               HttpOptions::ptr_t(), @@ -1127,7 +1122,6 @@ void HttpRequestTestObjectType::test<12>()  		// Issue a GET that *can* connect  		mStatus = HttpStatus(200);  		HttpHandle handle = req->requestGetByteRange(HttpRequest::DEFAULT_POLICY_ID, -													 0U,  													 url_base,  													 0,  													 0, @@ -1240,7 +1234,6 @@ void HttpRequestTestObjectType::test<13>()  			regex_container_t::value_type(boost::regex("X-LL-Special", boost::regex::icase),  										  boost::regex(".*", boost::regex::icase)));  		HttpHandle handle = req->requestGetByteRange(HttpRequest::DEFAULT_POLICY_ID, -													 0U,  													 url_base,  													 0,	  												 0, @@ -1346,7 +1339,6 @@ void HttpRequestTestObjectType::test<14>()  		// Issue a GET that sleeps  		mStatus = HttpStatus(HttpStatus::EXT_CURL_EASY, CURLE_OPERATION_TIMEDOUT);  		HttpHandle handle = req->requestGetByteRange(HttpRequest::DEFAULT_POLICY_ID, -													 0U,  													 url_base,  													 0,  													 0, @@ -1454,7 +1446,6 @@ void HttpRequestTestObjectType::test<15>()  		mStatus = HttpStatus(200);  		handler.mCheckContentType = "application/llsd+xml";  		HttpHandle handle = req->requestGet(HttpRequest::DEFAULT_POLICY_ID, -											0U,  											url_base,                                              HttpOptions::ptr_t(),                                              HttpHeaders::ptr_t(), @@ -1609,7 +1600,6 @@ void HttpRequestTestObjectType::test<16>()  				boost::regex("X-Reflect-content-encoding", boost::regex::icase),  				boost::regex(".*", boost::regex::icase)));  		HttpHandle handle = req->requestGet(HttpRequest::DEFAULT_POLICY_ID, -											0U,  											url_base + "reflect/",  											options,  											HttpHeaders::ptr_t(), @@ -1684,7 +1674,6 @@ void HttpRequestTestObjectType::test<16>()  				boost::regex("X-Reflect-content-encoding", boost::regex::icase),  				boost::regex(".*", boost::regex::icase)));  		handle = req->requestGetByteRange(HttpRequest::DEFAULT_POLICY_ID, -										  0U,  										  url_base + "reflect/",  										  0,  										  47, @@ -1863,7 +1852,6 @@ void HttpRequestTestObjectType::test<17>()  				boost::regex("X-Reflect-transfer_encoding", boost::regex::icase),  				boost::regex(".*chunked.*", boost::regex::icase)));  		HttpHandle handle = req->requestPost(HttpRequest::DEFAULT_POLICY_ID, -											 0U,  											 url_base + "reflect/",  											 ba,  											 options, @@ -2049,7 +2037,6 @@ void HttpRequestTestObjectType::test<18>()  				boost::regex(".*", boost::regex::icase)));  		HttpHandle handle = req->requestPut(HttpRequest::DEFAULT_POLICY_ID, -											0U,  											url_base + "reflect/",  											ba,  											options, @@ -2249,7 +2236,6 @@ void HttpRequestTestObjectType::test<19>()  				boost::regex("X-Reflect-content-encoding", boost::regex::icase),  				boost::regex(".*", boost::regex::icase)));  		HttpHandle handle = req->requestGet(HttpRequest::DEFAULT_POLICY_ID, -											0U,  											url_base + "reflect/",  											options,  											headers, @@ -2457,7 +2443,6 @@ void HttpRequestTestObjectType::test<20>()  				boost::regex(".*", boost::regex::icase)));  		HttpHandle handle = req->requestPost(HttpRequest::DEFAULT_POLICY_ID, -											 0U,  											 url_base + "reflect/",  											 ba,  											 options, @@ -2666,7 +2651,6 @@ void HttpRequestTestObjectType::test<21>()  				boost::regex("X-Reflect-content-type", boost::regex::icase),  				boost::regex("text/html", boost::regex::icase)));  		HttpHandle handle = req->requestPut(HttpRequest::DEFAULT_POLICY_ID, -											0U,  											url_base + "reflect/",  											ba,  											options, @@ -2797,7 +2781,6 @@ void HttpRequestTestObjectType::test<22>()  			char buffer[128];  			sprintf(buffer, "/bug2295/%d/", i);  			HttpHandle handle = req->requestGetByteRange(HttpRequest::DEFAULT_POLICY_ID, -														 0U,  														 url_base + buffer,  														 0,  														 25, @@ -2829,7 +2812,6 @@ void HttpRequestTestObjectType::test<22>()  			char buffer[128];  			sprintf(buffer, "/bug2295/00000012/%d/", i);  			HttpHandle handle = req->requestGetByteRange(HttpRequest::DEFAULT_POLICY_ID, -														 0U,  														 url_base + buffer,  														 0,  														 25, @@ -2861,7 +2843,6 @@ void HttpRequestTestObjectType::test<22>()  			char buffer[128];  			sprintf(buffer, "/bug2295/inv_cont_range/%d/", i);  			HttpHandle handle = req->requestGetByteRange(HttpRequest::DEFAULT_POLICY_ID, -														 0U,  														 url_base + buffer,  														 0,  														 25, @@ -2984,7 +2965,6 @@ void HttpRequestTestObjectType::test<23>()  			std::ostringstream url;  			url << url_base << i << "/";  			HttpHandle handle = req->requestGetByteRange(HttpRequest::DEFAULT_POLICY_ID, -														 0U,  														 url.str(),  														 0,  														 0, diff --git a/indra/llcrashlogger/llcrashlogger.cpp b/indra/llcrashlogger/llcrashlogger.cpp index 0d8fb4863b..bb603d3d7f 100644 --- a/indra/llcrashlogger/llcrashlogger.cpp +++ b/indra/llcrashlogger/llcrashlogger.cpp @@ -418,7 +418,7 @@ bool LLCrashLogger::runCrashLogPost(std::string host, LLSD data, std::string msg  		updateApplication(llformat("%s, try %d...", msg.c_str(), i+1));          LL_INFOS("CRASHREPORT") << "POST crash data to " << host << LL_ENDL; -        LLCore::HttpHandle handle = LLCoreHttpUtil::requestPostWithLLSD(httpRequest.get(), LLCore::HttpRequest::DEFAULT_POLICY_ID, 0, +        LLCore::HttpHandle handle = LLCoreHttpUtil::requestPostWithLLSD(httpRequest.get(), LLCore::HttpRequest::DEFAULT_POLICY_ID,              host, data, httpOpts, LLCore::HttpHeaders::ptr_t(), LLCore::HttpHandler::ptr_t(new LLCrashLoggerHandler));          if (handle == LLCORE_HTTP_HANDLE_INVALID) diff --git a/indra/llimage/tests/llimageworker_test.cpp b/indra/llimage/tests/llimageworker_test.cpp index 9011ac615c..462dde9fb8 100644 --- a/indra/llimage/tests/llimageworker_test.cpp +++ b/indra/llimage/tests/llimageworker_test.cpp @@ -141,7 +141,7 @@ namespace tut  			done = false;  			mRequest = new LLImageDecodeThread::ImageRequest(0, 0, -											 LLQueuedThread::PRIORITY_NORMAL, 0, FALSE, +											 0, FALSE,  											 new responder_test(&done));  		}  		~imagerequest_test() @@ -198,7 +198,7 @@ namespace tut  		ensure("LLImageDecodeThread: non threaded init state incorrect", mThread->tut_size() == 0);  		// Insert something in the queue  		bool done = false; -		LLImageDecodeThread::handle_t decodeHandle = mThread->decodeImage(NULL, LLQueuedThread::PRIORITY_NORMAL, 0, FALSE, new responder_test(&done)); +		LLImageDecodeThread::handle_t decodeHandle = mThread->decodeImage(NULL, 0, FALSE, new responder_test(&done));  		// Verifies we got a valid handle  		ensure("LLImageDecodeThread: non threaded decodeImage(), returned handle is null", decodeHandle != 0);  		// Verifies that we do now have something in the queued list @@ -221,7 +221,7 @@ namespace tut  		ensure("LLImageDecodeThread: threaded init state incorrect", mThread->tut_size() == 0);  		// Insert something in the queue  		bool done = false; -		LLImageDecodeThread::handle_t decodeHandle = mThread->decodeImage(NULL, LLQueuedThread::PRIORITY_NORMAL, 0, FALSE, new responder_test(&done)); +		LLImageDecodeThread::handle_t decodeHandle = mThread->decodeImage(NULL, 0, FALSE, new responder_test(&done));  		// Verifies we get back a valid handle  		ensure("LLImageDecodeThread:  threaded decodeImage(), returned handle is null", decodeHandle != 0);  		// Wait a little so to simulate the main thread doing something on its main loop...  | 
