ID: 15091 Comment by: [EMAIL PROTECTED] Old Reported By: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] Status: Open Bug Type: Sockets related Operating System: windows 2000 PHP Version: 4.1.1 New Comment:
PHP version: 4.1.1 Windows XP using IIS Installed from the executable download. Using the set_socket_timeout method causes the following error message to appear in the browser: Warning: socket_set_timeout() is not supported in this PHP build in c:\inetpub\wwwroot\test.php on line 26 Previous Comments: ------------------------------------------------------------------------ [2002-01-18 10:10:22] [EMAIL PROTECTED] correction that was a typo on my part. I did use fsockopen. The program is working fine as long as there is data coming from the other side. But if there is no data the fgets call waits indefinitely without timing out. That is the reason I tried to use socket_set_timeout. Unfortunately i get the message that socket_set_timeout is not part of windows build. ------------------------------------------------------------------------ [2002-01-18 10:04:14] [EMAIL PROTECTED] Why are you using $fsockopen and not fsockopen? That might be the cause of this bug. ------------------------------------------------------------------------ [2002-01-17 18:32:04] [EMAIL PROTECTED] Correction to my earlier report. When using socket_set_blocking($fp, false) I am "not" getting data every one second ------------------------------------------------------------------------ [2002-01-17 18:28:21] [EMAIL PROTECTED] I am using windows binaries. $fp = $fsockopen(($ip_addr, $port_no, $errno, $errstr, 30); do { if (!feof($fp)) { $livedata = trim(fgets($fp,128)); echo $livedata."\n"; } else { break; } } while(true); when there is no data being sent by the server my script waits indefinitely at fgets. I tried using socket_set_blocking($fp, false) but that does get me data every one second. I tried to use socket_set_timeout that is when I found out it is not supported in windows binaries. Is there any other way to solve this problem in windows. ------------------------------------------------------------------------ Edit this bug report at http://bugs.php.net/?id=15091&edit=1 -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]