ESPAsyncWebServer
ESPAsyncWebServer copied to clipboard
HTTP/1.0 chunked response
Currently when the server receives a request for a URL that response with a chunked response from an HTTP 1.0 client, it response the same way it would for a HTTP 1.1 client, except that it removes the Transfer-Encoding header.
Imo it should either a) Refuse to send chunked responses to HTTP 1.0 clients, or b) Keep the header for HTTP 1.0 clients as well.
Either way, it should probably write an error somewhere.