Re: [PHP-DEV] feof hangs (bug #25939)

2004-05-28 Thread Christian Schneider
Wez Furlong wrote: That was already reverted 5 weeks ago in CVS: http://cvs.php.net/diff.php/php-src/main/network.c?r1=1.83.2.23&r2=1.83.2.24&t y=u Oops, I checked release versions instead of the CVS, my apologies. - Chris -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visi

RE: [PHP-DEV] feof hangs (bug #25939)

2004-05-28 Thread Wez Furlong
That was already reverted 5 weeks ago in CVS: http://cvs.php.net/diff.php/php-src/main/network.c?r1=1.83.2.23&r2=1.83.2.24&t y=u --Wez. > It hangs in main/network.c the change introduced from 1.83.2.20 to > 1.83.2.21 in the select shown here if no data can be read (yet). This > doesn't mean th

Re: [PHP-DEV] feof hangs (bug #25939)

2004-05-27 Thread Christian Schneider
Wez Furlong wrote: I have to go out for a couple of hours; if you could track down where PHP is blocking in the 4.3 branch, I'd very much appreciate it. It hangs in main/network.c the change introduced from 1.83.2.20 to 1.83.2.21 in the select shown here if no data can be read (yet). This doesn't

RE: [PHP-DEV] feof hangs (bug #25939)

2004-05-27 Thread Wez Furlong
chneider [mailto:[EMAIL PROTECTED] > Sent: 27 May 2004 13:39 > To: [EMAIL PROTECTED] > Subject: [PHP-DEV] feof hangs (bug #25939) > > I tried to reopen bug #25939 <http://bugs.php.net/bug.php?id=25939> > because I ran into the same problem as dot org> but > it's

[PHP-DEV] feof hangs (bug #25939)

2004-05-27 Thread Christian Schneider
I tried to reopen bug #25939 because I ran into the same problem as but it's not my bug report. Should I open a new bug? I agree with the last comment that feof should not hang. Sample script: $fd = fsockopen('www.php.net', 80); feof($fd); This hangs for P