Response limit in size
I am planning to use httpx gem for making a HTTP request to the wild, such as customer-provided webhook URLs and [OAuth Client ID metadata](https://www.ietf.org/archive/id/draft-ietf-oauth-client-id-metadata-document-01.html), thanks to the builtin ssrf protection plugin.
However we discovered that we couldn't figure out how to properly limit response size.
If we refuse chunked/compressed response at all then we can simply validate content-length header, but it'd be plus if we can keep supporting those responses while having a limit, such like `with(max_header_size:, max_body_size:)`.
For now I am going to use the stream plugin to cover those cases as a workaround - let me know if I have oversight to properly implement a limit with the present library implementation.
issue