diff options
Diffstat (limited to 'indra/llmessage')
| -rw-r--r-- | indra/llmessage/llavatarnamecache.cpp | 2 | ||||
| -rw-r--r-- | indra/llmessage/llcorehttputil.cpp | 27 | ||||
| -rw-r--r-- | indra/llmessage/llcorehttputil.h | 25 | ||||
| -rw-r--r-- | indra/llmessage/tests/llcoproceduremanager_test.cpp | 2 | 
4 files changed, 18 insertions, 38 deletions
| diff --git a/indra/llmessage/llavatarnamecache.cpp b/indra/llmessage/llavatarnamecache.cpp index 87fd5a154f..f7a9f55685 100644 --- a/indra/llmessage/llavatarnamecache.cpp +++ b/indra/llmessage/llavatarnamecache.cpp @@ -64,7 +64,6 @@ LLCore::HttpRequest::ptr_t		sHttpRequest;  LLCore::HttpHeaders::ptr_t		sHttpHeaders;  LLCore::HttpOptions::ptr_t		sHttpOptions;  LLCore::HttpRequest::policy_t	sHttpPolicy; -LLCore::HttpRequest::priority_t	sHttpPriority;  /* Sample response:  <?xml version="1.0"?> @@ -121,7 +120,6 @@ LLAvatarNameCache::LLAvatarNameCache()      sHttpHeaders = LLCore::HttpHeaders::ptr_t(new LLCore::HttpHeaders());      sHttpOptions = LLCore::HttpOptions::ptr_t(new LLCore::HttpOptions());      sHttpPolicy = LLCore::HttpRequest::DEFAULT_POLICY_ID; -    sHttpPriority = 0;  }  LLAvatarNameCache::~LLAvatarNameCache() diff --git a/indra/llmessage/llcorehttputil.cpp b/indra/llmessage/llcorehttputil.cpp index c8c9280029..02f273b204 100644 --- a/indra/llmessage/llcorehttputil.cpp +++ b/indra/llmessage/llcorehttputil.cpp @@ -131,7 +131,6 @@ bool responseToLLSD(HttpResponse * response, bool log, LLSD & out_llsd)  HttpHandle requestPostWithLLSD(HttpRequest * request,      HttpRequest::policy_t policy_id, -    HttpRequest::priority_t priority,      const std::string & url,      const LLSD & body,      const HttpOptions::ptr_t &options, @@ -145,7 +144,6 @@ HttpHandle requestPostWithLLSD(HttpRequest * request,      LLSDSerialize::toXML(body, bas);      handle = request->requestPost(policy_id, -        priority,          url,          ba,          options, @@ -158,7 +156,6 @@ HttpHandle requestPostWithLLSD(HttpRequest * request,  HttpHandle requestPutWithLLSD(HttpRequest * request,      HttpRequest::policy_t policy_id, -    HttpRequest::priority_t priority,      const std::string & url,      const LLSD & body,      const HttpOptions::ptr_t &options, @@ -172,7 +169,6 @@ HttpHandle requestPutWithLLSD(HttpRequest * request,      LLSDSerialize::toXML(body, bas);      handle = request->requestPut(policy_id, -        priority,          url,          ba,          options, @@ -184,7 +180,6 @@ HttpHandle requestPutWithLLSD(HttpRequest * request,  HttpHandle requestPatchWithLLSD(HttpRequest * request,      HttpRequest::policy_t policy_id, -    HttpRequest::priority_t priority,      const std::string & url,      const LLSD & body,      const HttpOptions::ptr_t &options, @@ -198,7 +193,6 @@ HttpHandle requestPatchWithLLSD(HttpRequest * request,      LLSDSerialize::toXML(body, bas);      handle = request->requestPatch(policy_id, -        priority,          url,          ba,          options, @@ -672,10 +666,9 @@ const std::string HttpCoroutineAdapter::HTTP_RESULTS_CONTENT("content");  const std::string HttpCoroutineAdapter::HTTP_RESULTS_RAW("raw");  HttpCoroutineAdapter::HttpCoroutineAdapter(const std::string &name, -    LLCore::HttpRequest::policy_t policyId, LLCore::HttpRequest::priority_t priority) : +    LLCore::HttpRequest::policy_t policyId) :      mAdapterName(name),      mPolicyId(policyId), -    mPriority(priority),      mYieldingHandle(LLCORE_HTTP_HANDLE_INVALID),      mWeakRequest(),      mWeakHandler() @@ -709,7 +702,7 @@ LLSD HttpCoroutineAdapter::postAndSuspend_(LLCore::HttpRequest::ptr_t &request,      // The HTTPCoroHandler does not self delete, so retrieval of a the contained       // pointer from the smart pointer is safe in this case.      LLCore::HttpHandle hhandle = requestPostWithLLSD(request, -        mPolicyId, mPriority, url, body, options, headers, +        mPolicyId, url, body, options, headers,          handler);      if (hhandle == LLCORE_HTTP_HANDLE_INVALID) @@ -832,7 +825,7 @@ LLSD HttpCoroutineAdapter::postAndSuspend_(LLCore::HttpRequest::ptr_t &request,      // The HTTPCoroHandler does not self delete, so retrieval of a the contained       // pointer from the smart pointer is safe in this case. -    LLCore::HttpHandle hhandle = request->requestPost(mPolicyId, mPriority, url, rawbody.get(), +    LLCore::HttpHandle hhandle = request->requestPost(mPolicyId, url, rawbody.get(),          options, headers, handler);      if (hhandle == LLCORE_HTTP_HANDLE_INVALID) @@ -890,7 +883,7 @@ LLSD HttpCoroutineAdapter::putAndSuspend_(LLCore::HttpRequest::ptr_t &request,      // The HTTPCoroHandler does not self delete, so retrieval of a the contained       // pointer from the smart pointer is safe in this case.      LLCore::HttpHandle hhandle = requestPutWithLLSD(request, -        mPolicyId, mPriority, url, body, options, headers, +        mPolicyId, url, body, options, headers,          handler);      if (hhandle == LLCORE_HTTP_HANDLE_INVALID) @@ -916,7 +909,7 @@ LLSD HttpCoroutineAdapter::putAndSuspend_(LLCore::HttpRequest::ptr_t &request,      // The HTTPCoroHandler does not self delete, so retrieval of a the contained       // pointer from the smart pointer is safe in this case. -    LLCore::HttpHandle hhandle = request->requestPut(mPolicyId, mPriority,  +    LLCore::HttpHandle hhandle = request->requestPut(mPolicyId,          url, rawbody.get(), options, headers, handler);      if (hhandle == LLCORE_HTTP_HANDLE_INVALID) @@ -972,7 +965,7 @@ LLSD HttpCoroutineAdapter::getAndSuspend_(LLCore::HttpRequest::ptr_t &request,      // The HTTPCoroHandler does not self delete, so retrieval of a the contained       // pointer from the smart pointer is safe in this case. -    LLCore::HttpHandle hhandle = request->requestGet(mPolicyId, mPriority, +    LLCore::HttpHandle hhandle = request->requestGet(mPolicyId,          url, options, headers, handler);      if (hhandle == LLCORE_HTTP_HANDLE_INVALID) @@ -1018,7 +1011,7 @@ LLSD HttpCoroutineAdapter::deleteAndSuspend_(LLCore::HttpRequest::ptr_t &request      checkDefaultHeaders(headers);      // The HTTPCoroHandler does not self delete, so retrieval of a the contained       // pointer from the smart pointer is safe in this case. -    LLCore::HttpHandle hhandle = request->requestDelete(mPolicyId, mPriority, +    LLCore::HttpHandle hhandle = request->requestDelete(mPolicyId,          url, options, headers, handler);      if (hhandle == LLCORE_HTTP_HANDLE_INVALID) @@ -1056,7 +1049,7 @@ LLSD HttpCoroutineAdapter::patchAndSuspend_(LLCore::HttpRequest::ptr_t &request,      // The HTTPCoroHandler does not self delete, so retrieval of a the contained       // pointer from the smart pointer is safe in this case.      LLCore::HttpHandle hhandle = requestPatchWithLLSD(request, -        mPolicyId, mPriority, url, body, options, headers, +        mPolicyId, url, body, options, headers,          handler);      if (hhandle == LLCORE_HTTP_HANDLE_INVALID) @@ -1098,7 +1091,7 @@ LLSD HttpCoroutineAdapter::copyAndSuspend_(LLCore::HttpRequest::ptr_t &request,      // The HTTPCoroHandler does not self delete, so retrieval of a the contained       // pointer from the smart pointer is safe in this case.      //  -    LLCore::HttpHandle hhandle = request->requestCopy(mPolicyId, mPriority, url, +    LLCore::HttpHandle hhandle = request->requestCopy(mPolicyId, url,          options, headers, handler);      if (hhandle == LLCORE_HTTP_HANDLE_INVALID) @@ -1140,7 +1133,7 @@ LLSD HttpCoroutineAdapter::moveAndSuspend_(LLCore::HttpRequest::ptr_t &request,      // The HTTPCoroHandler does not self delete, so retrieval of a the contained       // pointer from the smart pointer is safe in this case.      //  -    LLCore::HttpHandle hhandle = request->requestMove(mPolicyId, mPriority, url, +    LLCore::HttpHandle hhandle = request->requestMove(mPolicyId, url,          options, headers, handler);      if (hhandle == LLCORE_HTTP_HANDLE_INVALID) diff --git a/indra/llmessage/llcorehttputil.h b/indra/llmessage/llcorehttputil.h index 6f0b865f83..430dc417ac 100644 --- a/indra/llmessage/llcorehttputil.h +++ b/indra/llmessage/llcorehttputil.h @@ -116,7 +116,6 @@ std::string responseToString(LLCore::HttpResponse * response);  ///  LLCore::HttpHandle requestPostWithLLSD(LLCore::HttpRequest * request,      LLCore::HttpRequest::policy_t policy_id, -    LLCore::HttpRequest::priority_t priority,      const std::string & url,      const LLSD & body,      const LLCore::HttpOptions::ptr_t &options, @@ -125,20 +124,18 @@ LLCore::HttpHandle requestPostWithLLSD(LLCore::HttpRequest * request,  inline LLCore::HttpHandle requestPostWithLLSD(LLCore::HttpRequest::ptr_t & request,  	LLCore::HttpRequest::policy_t policy_id, -	LLCore::HttpRequest::priority_t priority,  	const std::string & url,  	const LLSD & body,  	const LLCore::HttpOptions::ptr_t & options,  	const LLCore::HttpHeaders::ptr_t & headers,      const LLCore::HttpHandler::ptr_t & handler)  { -    return requestPostWithLLSD(request.get(), policy_id, priority, +    return requestPostWithLLSD(request.get(), policy_id,          url, body, options, headers, handler);  }  inline LLCore::HttpHandle requestPostWithLLSD(LLCore::HttpRequest::ptr_t & request,      LLCore::HttpRequest::policy_t policy_id, -    LLCore::HttpRequest::priority_t priority,      const std::string & url,      const LLSD & body,      const LLCore::HttpHandler::ptr_t &handler) @@ -146,7 +143,7 @@ inline LLCore::HttpHandle requestPostWithLLSD(LLCore::HttpRequest::ptr_t & reque      LLCore::HttpOptions::ptr_t options;      LLCore::HttpHeaders::ptr_t headers; -    return requestPostWithLLSD(request.get(), policy_id, priority, +    return requestPostWithLLSD(request.get(), policy_id,          url, body, options, headers, handler);  } @@ -169,7 +166,6 @@ inline LLCore::HttpHandle requestPostWithLLSD(LLCore::HttpRequest::ptr_t & reque  ///  LLCore::HttpHandle requestPutWithLLSD(LLCore::HttpRequest * request,  	LLCore::HttpRequest::policy_t policy_id, -	LLCore::HttpRequest::priority_t priority,  	const std::string & url,  	const LLSD & body,  	const LLCore::HttpOptions::ptr_t &options, @@ -178,20 +174,18 @@ LLCore::HttpHandle requestPutWithLLSD(LLCore::HttpRequest * request,  inline LLCore::HttpHandle requestPutWithLLSD(LLCore::HttpRequest::ptr_t & request,  	LLCore::HttpRequest::policy_t policy_id, -	LLCore::HttpRequest::priority_t priority,  	const std::string & url,  	const LLSD & body,  	const LLCore::HttpOptions::ptr_t & options,  	const LLCore::HttpHeaders::ptr_t & headers,      LLCore::HttpHandler::ptr_t handler)  { -    return requestPutWithLLSD(request.get(), policy_id, priority, +    return requestPutWithLLSD(request.get(), policy_id,          url, body, options, headers, handler);  }  inline LLCore::HttpHandle requestPutWithLLSD(LLCore::HttpRequest::ptr_t & request,      LLCore::HttpRequest::policy_t policy_id, -    LLCore::HttpRequest::priority_t priority,      const std::string & url,      const LLSD & body,      LLCore::HttpHandler::ptr_t handler) @@ -199,7 +193,7 @@ inline LLCore::HttpHandle requestPutWithLLSD(LLCore::HttpRequest::ptr_t & reques      LLCore::HttpOptions::ptr_t options;      LLCore::HttpHeaders::ptr_t headers; -    return requestPutWithLLSD(request.get(), policy_id, priority, +    return requestPutWithLLSD(request.get(), policy_id,          url, body, options, headers, handler);  } @@ -221,7 +215,6 @@ inline LLCore::HttpHandle requestPutWithLLSD(LLCore::HttpRequest::ptr_t & reques  ///  LLCore::HttpHandle requestPatchWithLLSD(LLCore::HttpRequest * request,      LLCore::HttpRequest::policy_t policy_id, -    LLCore::HttpRequest::priority_t priority,      const std::string & url,      const LLSD & body,      const LLCore::HttpOptions::ptr_t &options, @@ -230,20 +223,18 @@ LLCore::HttpHandle requestPatchWithLLSD(LLCore::HttpRequest * request,  inline LLCore::HttpHandle requestPatchWithLLSD(LLCore::HttpRequest::ptr_t & request,      LLCore::HttpRequest::policy_t policy_id, -    LLCore::HttpRequest::priority_t priority,      const std::string & url,      const LLSD & body,      const LLCore::HttpOptions::ptr_t & options,      const LLCore::HttpHeaders::ptr_t & headers,      const LLCore::HttpHandler::ptr_t & handler)  { -    return requestPatchWithLLSD(request.get(), policy_id, priority, +    return requestPatchWithLLSD(request.get(), policy_id,          url, body, options, headers, handler);  }  inline LLCore::HttpHandle requestPatchWithLLSD(LLCore::HttpRequest::ptr_t & request,      LLCore::HttpRequest::policy_t policy_id, -    LLCore::HttpRequest::priority_t priority,      const std::string & url,      const LLSD & body,      const LLCore::HttpHandler::ptr_t &handler) @@ -251,7 +242,7 @@ inline LLCore::HttpHandle requestPatchWithLLSD(LLCore::HttpRequest::ptr_t & requ      LLCore::HttpOptions::ptr_t options;      LLCore::HttpHeaders::ptr_t headers; -    return requestPatchWithLLSD(request.get(), policy_id, priority, +    return requestPatchWithLLSD(request.get(), policy_id,          url, body, options, headers, handler);  } @@ -329,8 +320,7 @@ public:      typedef boost::shared_ptr<HttpCoroutineAdapter> ptr_t;      typedef boost::weak_ptr<HttpCoroutineAdapter>   wptr_t; -    HttpCoroutineAdapter(const std::string &name, LLCore::HttpRequest::policy_t policyId, -        LLCore::HttpRequest::priority_t priority = 0L); +    HttpCoroutineAdapter(const std::string &name, LLCore::HttpRequest::policy_t policyId);      ~HttpCoroutineAdapter();      /// Execute a Post transaction on the supplied URL and yield execution of  @@ -673,7 +663,6 @@ private:      void checkDefaultHeaders(LLCore::HttpHeaders::ptr_t &headers);      std::string                     mAdapterName; -    LLCore::HttpRequest::priority_t mPriority;      LLCore::HttpRequest::policy_t   mPolicyId;      LLCore::HttpHandle              mYieldingHandle; diff --git a/indra/llmessage/tests/llcoproceduremanager_test.cpp b/indra/llmessage/tests/llcoproceduremanager_test.cpp index a1a4ce0520..d6481d4eea 100644 --- a/indra/llmessage/tests/llcoproceduremanager_test.cpp +++ b/indra/llmessage/tests/llcoproceduremanager_test.cpp @@ -48,7 +48,7 @@  #pragma warning(disable: 4702)  #endif -LLCoreHttpUtil::HttpCoroutineAdapter::HttpCoroutineAdapter(std::string const&, unsigned int, unsigned int) +LLCoreHttpUtil::HttpCoroutineAdapter::HttpCoroutineAdapter(std::string const&, unsigned int)  {  } | 
