ID:               43325
 User updated by:  mertcan at dpozitif dot com
 Reported By:      mertcan at dpozitif dot com
-Status:           Feedback
+Status:           Open
 Bug Type:         Streams related
 Operating System: Centos 5.0
 PHP Version:      5.2.5
 New Comment:

i gave $tanim in function use:

function rcon_komut($komut, $rcon_pass, $ip, $port)
{
        $msg = "ÿÿÿÿchallenge rcon";
        $fp = fsockopen("udp://".$ip,$port, $errno, $errstr);
                
        stream_set_blocking($fp, 0);
                
        fputs($fp, $msg, strlen($msg));
        $response = fgets($fp, 1024);                           
        $challenge = substr($response, 19, strlen($response) - 20);
                
        $msg="ÿÿÿÿrcon".$challenge."\"".$rcon_pass."\"".$komut.chr(0);
        fputs($fp, $msg, strlen($msg));
                
        while (!feof($fp))
                $response .= fgets($fp, 32);

        fclose ($fp);
        $response = substr($response, 6, strlen($response)-6);
        return $response;
}


Previous Comments:
------------------------------------------------------------------------

[2007-11-19 16:31:10] [EMAIL PROTECTED]

Well, can you give a script that has some possibility of working
properly? In the give script you have at least one variable which is not
set anywhere: $komut


------------------------------------------------------------------------

[2007-11-19 14:56:21] mertcan at dpozitif dot com

It still hangs:

$fp = fsockopen("udp://".$ip,$port, $errno, $errstr);
stream_set_blocking($fp, 0);

------------------------------------------------------------------------

[2007-11-19 13:29:07] [EMAIL PROTECTED]

Shouldn't you make the stream non-blocking? Try adding this after
fsockopen:

stream_set_blocking($fp, false);

------------------------------------------------------------------------

[2007-11-18 23:12:34] mertcan at dpozitif dot com

Description:
------------
Using feof on UDP hangs. It should give true or false, in my example it
should give true but it hangs. I've tried many ways but it always hangs.

Reproduce code:
---------------
$msg = "ÿÿÿÿchallenge rcon";

$fp = fsockopen("udp://62.68.207.16",27015, $errno, $errstr);
fputs($fp, $msg, strlen($msg));
$response = fgets($fp, 1024);                           
$challenge = substr($response, 19, strlen($response) - 20);
                
$msg = "ÿÿÿÿrcon ".$challenge." \"123456\" ".$komut.chr(0);
fputs($fp, $msg, strlen($msg));

echo feof($fp) ? 'true':'false';
                
$response .= fgets($fp, 32);

fclose ($fp);

Expected result:
----------------
true

Actual result:
--------------
hangs


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=43325&edit=1

Reply via email to