keniwhat
keniwhat
I tested zsync-curl via a proxy (Apache2). It failed with HTTPS but works with HTTP. (mod_proxy_connect which does the HTTPS traffic in mod_proxy does not seem to do byte ranges)....
I have been able to temporarily patch this by changing Session::Impl::makeRequest as follows: if (proxies_.has(protocol)) { curl_easy_setopt(curl, CURLOPT_PROXY, proxies_[protocol].data()); } else { char* proxy = getenv("http_proxy"); if (proxy != NULL)...
Carthage is a much better solution to dependency management than Cocoapods due to separation of the build process from the workspace/project. I think the way forward on this is to...
As per this document (https://httpwg.org/specs/rfc7233.html), Section 2.1, the HTTP server should treat a range request beyond end-of-file as being upto end-of-file. Screenshot attached:
I made the changes to the code and test as requested but it has not been merged. Let me know what you need from me to get this onto the...
Updated this branch as requested. Also synced the branch to vapor/vapor:main. Should be ready now for merge back onto vapor/vapor:main.