yknoya opened a new issue, #12171: URL: https://github.com/apache/trafficserver/issues/12171
According to the documentation for proxy.config.http.strict_chunk_parsing in https://github.com/apache/trafficserver/pull/12150, it states: ``` If enabled (``1``), |TS| returns 400 Bad Request if chunked message body is not compliant with RFC 9112. ``` However, when I set strict_chunk_parsing to 1 and send a chunked message body that is not compliant with RFC 9112, no response is returned, and the connection is dropped instead. Here is the request content sent during the test (note that the character after '4' is '\n'): ``` POST /post HTTP/1.1\r\n Host: example.com\r\n User-Agent: test\r\n Transfer-Encoding: chunked\r\n \r\n 4\n test\r\n 0\r\n \r\n ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
