DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=12940>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=12940 TCPMon CRLF Bug in Resend (Content-Length calc) [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|[EMAIL PROTECTED] |[EMAIL PROTECTED] ------- Additional Comments From [EMAIL PROTECTED] 2002-09-26 13:12 ------- Isn't it always the case the HTTP header are terminated by \r\n as mandated by the HTTP spec? In this case, the code change should be: 1465c1469 < "Content-Length: " + newLen + "\n" + --- > "Content-Length: " + newLen + "\r\n" + All web servers should accept this as correct, while only some servers will accept \n by itself.