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
I found an issue in "Parsing.cpp". (line 164) else if (headerName == "Content-Length"){ contentLength = headerValue.toInt();
The compare between "headerName" and "Content-Length" must not be case sensitive. For this problem i can´t read HTTP_POST payload. I change this in my enviroment and work fine!! else if (headerName == "content-length"){ contentLength = headerValue.toInt();
Could you change all HTTP header compare to not be case sensitive?
I found an issue in "Parsing.cpp". (line 164)
else if (headerName == "Content-Length"){ contentLength = headerValue.toInt();
The compare between "headerName" and "Content-Length" must not be case sensitive. For this problem i can´t read HTTP_POST payload. I change this in my enviroment and work fine!!
else if (headerName == "content-length"){ contentLength = headerValue.toInt();
Could you change all HTTP header compare to not be case sensitive?
Want to back this issue? Post a bounty on it! We accept bounties via Bountysource.
The text was updated successfully, but these errors were encountered: