You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since 2.6.2 chunked HTTP is broken because the web server sends chunk lengths in the wrong location. For one thing, it's sending a chunk length before the headers. For example, the sketch below results in the following data being transmitted (as reported by wireshark):
71
HTTP/1.1 200 OK
Content-Type: text/plain
Accept-Ranges: none
Transfer-Encoding: chunked
Connection: close
0
Webserver bug!
Git bisect indicates that 36f9034 is the first bad commit.
Basic Infos
Platform
Settings in IDE
Problem Description
Since 2.6.2 chunked HTTP is broken because the web server sends chunk lengths in the wrong location. For one thing, it's sending a chunk length before the headers. For example, the sketch below results in the following data being transmitted (as reported by wireshark):
Git bisect indicates that 36f9034 is the first bad commit.
MCVE Sketch
Debug Messages
The text was updated successfully, but these errors were encountered: