ZF-157: why sending CRLF?
Description
In Zend_Http_Client incubator version, the _write() method is written,
fwrite($socket, $request . "\r\n");
But, is CRLF needed here?
$request set $headers + "\r\n" + $body in Zend_Http_Client_Abstract::request() method, so I think it will be
fwrite($socket, $request);
Please check it.
Comments
Posted by Shahar Evron (shahar) on 2006-06-29T09:34:50.000+0000
Issue fixed - please check again with revision 736
Posted by Jayson Minard (jayson) on 2006-06-29T10:52:02.000+0000
adding to release 0.1.4
Posted by Naoto Ishikawa (ishinao) on 2006-06-30T01:19:52.000+0000
I tested with revision 754, and it is OK. Thanks.