Stephen M. Coakley

Results 115 comments of Stephen M. Coakley

You might not have headers for the system curl installed, in which case the curl crate may use a static build anyway. You can check if this is the case...

I appreciate your concern on this, and I agree that Isahc ought to handle this better. However, this would be a breaking change and would require a 2.0 release at...

Strictly speaking, it is not possible to implement conversions between `url::Url` and `http::Uri` from within Isahc due to the [orphan rule](https://doc.rust-lang.org/book/ch10-02-traits.html#implementing-a-trait-on-a-type); only the crate that defines a type can implement...

Not sure if we can actually do this upgrade yet; it depends on what version libcurl is designed to link to.

I might consider restoring such an option under an optional feature. Since it only works when curl is compiled with c-ares support (which it typically isn't) it should retain a...

Request headers or response headers? I'm not sure what you mean. If an outgoing proxy is adding request headers, it is impossible for you to see those, because the request...

I'm not sure what you mean by "2 layers". Is the screenshot the raw response from the server? That would be a malformed HTTP/1.1 response which we make no guarantees...

**Edit:** I see what's going on here; it looks like an HTTP CONNECT tunnel proxy is being used, and you are interested in retrieving the headers returned by the tunnel...

Updated issue description with the proposed API and implementation notes on how this could be added.

Thanks for the question! This is currently not available, but would be a welcome improvement! Cookies are only held in memory at the moment. Currently the cookies subsystem does not...