Home » Networking » Net_NNTP » Bug #2406
bug in post method (isConnected to be exact)
Details
| Submitted | 2004-09-27 10:14 UTC |
|---|---|
| From | martel at post dot pl |
| Status | Bogus |
| Package | Net_NNTP |
| PHP Version | 5.0.2 |
| OS | Gentoo 2004.0 |
| Roadmaps | (Not assigned) |
Comments
[2004-09-27 10:14 UTC] martel at post dot pl
Description:
------------
Post method times out giving an error of "Timeout after 10 seconds, closing connection.; Unidentified response code".
The problem lies in the method isConnected(). When you comment out the lines of 1140-1143 of the Net/NNTP/Protocol/Client.php, everything works as expected.
I'm using latest version of Net_NNTP - 0.11.3 and PHP 5.0.2 (bug reporting form is missing that version)
Reproduce code:
---------------
require_once('Net/NNTP/Client.php');
$nntp = new Net_NNTP_Client();
$nntp->setDebug(true);
$res = $nntp->connect('news.futuro.pl', 119);
if (PEAR::isError($res)) {die($res->getMessage());}
$from = 'martel <helpdesk@pro-futuro.com>';
$body = 'test';
$subject = 'test';
$res = $nntp->post('futuro.test', $subject, $body, $from, $additional);
if (PEAR::isError($res)) {
$res = $res->getUserinfo() . '; ' . $res->getMessage();
}
var_dump($res);
Expected result:
----------------
To be posted ok.
Actual result:
--------------
Timeout after 10 seconds, closing connection.; Unidentified response code
[2004-09-27 10:24 UTC] martel at post dot pl
The summary was incorrectly filled - sorry.
[2004-11-02 10:40 UTC] heino at gehlsen dot dk
Have received no reply from bug reporter…
[2004-11-02 12:02 UTC] martel at post dot pl
I haven't recieved any mail (maybe it was catched by a spam filter). I'm eager to help if you need me, though.