httpc icon indicating copy to clipboard operation
httpc copied to clipboard

HTTP client for embedded use - supports redirects and resume.

Results 5 httpc issues
Sort by recently updated
recently updated
newest added

The code provides a `Range` header only to HTTP 1.0 and not for HTTP 1.1. Is that for sure correct? Shouldn't be that reversed? ```c if (op == HTTPC_GET &&...

bug

Is there a way to disable retry mechanism? Right now I see we can reduce connection attempt to a minimum 1 so we can't avoid retrying connection it at least...

State: Do not merge. Need input before finalizing or discarding PR I've been looking into fixing the issues with #7 and added state clearing when re-using non-yielding connections. This fixes...

(sorry for the issue spam) Do you have an example of how to do socket reuse properly? When I try it the first request seems to work fine: ``` info:1094...

It looks like the content length is parsed by httpc during header reception, but it seems to be tucked away in an opaque struct that's inaccessible to the caller. Is...