- Dec 17, 2020
-
- Oct 10, 2020
-
- Sep 29, 2020
-
-
Rye Mutt authored
-
- Sep 27, 2020
-
-
Kitty Barnett authored
-
- Sep 23, 2020
-
-
Andrey Kleshchev authored
-
- Sep 22, 2020
-
-
Rye Mutt authored
-
- Sep 09, 2020
-
-
Andrey Kleshchev authored
-
- Aug 09, 2020
-
-
Rye Mutt authored
-
- Mar 04, 2020
-
-
Andrey Kleshchev authored
-
- Jan 29, 2019
-
-
andreykproductengine authored
-
- Oct 24, 2017
-
-
Nat Goodspeed authored
-
- Sep 30, 2017
-
-
Nat Goodspeed authored
The new helper functions check_curl_easy_setopt() and check_curl_multi_setopt() encapsulate the pervasive idiom: code = curl_{easy,multi}_setopt(handle, option, arg); check_curl_{easy,multi}_code(code, option); But since each of these helper functions contains its own local CURL{,M}code variable 'code', having a caller-scope variable reused for every such call is no longer necessary -- in fact is no longer used at all. That produces a fatal warning with MSVC. Get rid of those now-unused variables.
-
- Sep 29, 2017
-
-
Nat Goodspeed authored
-
- Aug 14, 2017
-
-
Rider Linden authored
-
- Aug 08, 2017
-
-
Rider Linden authored
-
- Jul 28, 2017
-
-
Rider Linden authored
-
- Jul 24, 2017
-
-
andreykproductengine authored
-
- Dec 13, 2016
-
-
andreykproductengine authored
-
- Feb 19, 2016
-
-
Rider Linden authored
MAINT-6137: Re enable pipelining by default, use new version of CURL (7.47) with corrections for timed out connections in pipelining. Minor fix for safer op retrieval.
-
- Nov 10, 2015
-
-
Oz Linden authored
-
- Oct 16, 2015
-
-
Rider Linden authored
MAINT-5271: Converted internal pointers to internal operation to managed shared pointers. Removed direct cast and dereference of handles.
-
- Aug 12, 2015
-
-
Rider Linden authored
MAINT-5500: Finish converting the AIS responders to the new coroutine model, Cleaned up dead an unused code. MAINT-4952: Added COPY and MOVE methods to Core:Http adapter
-
- Jul 08, 2015
-
-
Rider Linden authored
-
Rider Linden authored
-
Rider Linden authored
Convert LLCore::HttpHeaders to use shared_ptr<> rather than an intrusive_ptr<> for refrence counting.
-
- Jun 24, 2015
-
-
Rider Linden authored
-
- Jun 05, 2015
-
-
Rider Linden authored
-
Rider Linden authored
A couple of minor changes to merchant out box in hopes that the would fix the issues.
-
- May 27, 2015
-
-
Rider Linden authored
Viewer media routines to coroutine. Post with raw respons in llcorehttputil LLCore::Http added headers only option (applies only on get)
-
- Apr 10, 2015
-
-
Rider Linden authored
-
- Apr 01, 2015
-
-
Rider Linden authored
Added get/setRequestURL() to LLCore::HttpResponse Removed URI from the HttpSDHandler.
-
- Mar 27, 2015
-
-
Rider Linden authored
-
- Mar 16, 2015
-
-
Rider Linden authored
-
- Nov 06, 2014
-
-
Monty Brandenberg authored
Under pipelining, requests were given a 5x timeout factor due to the way that the timeout clock works in libcurl. Under CDN load, connections were not being torn down quickly and it was only this timer that led to disconnect and retry. So, we want to break a connection that isn't making progress but that isn't immediately possible. We'll compromise with a 60S timeout that (we hope) will be neither too long for stalled connections nor too short for large asset transfer requests.
-
- Oct 17, 2014
-
-
callum_linden authored
-
callum_linden authored
Update to build on Xcode 6.0: interesting - clang doesn't like it if you specify extra components of a format string that aren't populated in snprintf
-
- Oct 10, 2014
-
-
Monty Brandenberg authored
Incorporate the new libcurl 7.38.0 build with curl bug 1420 workaround. Add developer-centric testing code to evaluate the workaround or a future fix for 1420.
-
- Sep 19, 2014
-
-
Monty Brandenberg authored
of used handles and a fast handle factory that's thread- correct.
-
- Sep 18, 2014
-
-
Monty Brandenberg authored
reproduce data corruption via timeouts.
-
- Sep 04, 2014
-
-
Monty Brandenberg authored
as transfers can appear delayed with deep pipelining and more requests in the pool. Added bad HTTP status error (typically getting a 0 back as HTTP status from libcurl) to the list of retryable errors. There's a response stream problem with libcurl and pipelining that induces this problem. Retrying helps but may not be entirely safe. Watch bug 1420 on the libcurl sourceforge bug tracker. Extend options of test/example program to include un-ranged requests. Document the excessive data transfer induced when ranged requests are disabled. This is an abnormal mode for very rare users so we'll just eat that for now.
-