Open
Description
We should probably deprecate the ignoreUncleanSSLShutdown
parameter. AsyncHTTPClient knows when it can and when it cannot ignore an unclean SSL shutdown.
Basically if an .end
was received and we have either a content-length
OR a transfer-encoding: chunked
header from the server, we can safely ignore. For HTTP/2 we can always ignore.
If we do have neither a content-length
, nor a transfer-encoding: chunked
header, then this should error.