There was case-censitive check for value "chunked" of Request-encoding field of device support request of HTTP1/1. I think it should be incase-sensitive check in function raw_find_str. I replaced strstr function on strcasestr function.
contents patch
Logged In: YES user_id=865654
You are right, it should be case insensitive : http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html § 3.6 "All transfer-coding values are case-insensitive."
However "strcasestr" is not portable so your patch may need to be modified a bit.
Log in to post a comment.
contents patch
Logged In: YES
user_id=865654
You are right, it should be case insensitive :
http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html
§ 3.6
"All transfer-coding values are case-insensitive."
However "strcasestr" is not portable so your patch may need
to be modified a bit.