Jump to content

Socket Server via PHP


Sherif

Recommended Posts

Hi everyone!

 

I'm trying to create a socket TCP/IP server, i used this code which is already available @ php.net

 

<?php
error_reporting(E_ALL);

/* Allow the script to hang around waiting for connections. */
set_time_limit(0);

/* Turn on implicit output flushing so we see what we're getting
* as it comes in. */
ob_implicit_flush();

$address = '0.0.0.0;
$port = 5000;

if (($sock = socket_create(AF_INET, SOCK_STREAM, SOL_TCP)) == false) {
    echo "socket_create() failed: reason: " . socket_strerror(socket_last_error()) . "<br \>";
}

if (socket_bind($sock, $address, $port) == false) {
    echo "socket_bind() failed: reason: " . socket_strerror(socket_last_error($sock)) . "<br \>";
}

if (socket_listen($sock, 5) == false) {
    echo "socket_listen() failed: reason: " . socket_strerror(socket_last_error($sock)) . "<br \>";
}

do {
    socket_set_nonblock($sock);
    if (($msgsock = socket_accept($sock)) == false) {
        echo "socket_accept() failed: reason: " . socket_strerror(socket_last_error($sock)) . "<br \>";
        socket_clear_error();
        break;
    }
    /* Send instructions. */
    $msg = "\nWelcome to the PHP Test Server. <br \>" .
        "To quit, type 'quit'. To shut down the server type 'shutdown'.<br \>";
    socket_write($msgsock, $msg, strlen($msg));

    do {
        if (false == ($buf = socket_read($msgsock, 2048, PHP_NORMAL_READ))) {
            echo "socket_read() failed: reason: " . socket_strerror(socket_last_error($msgsock)) . "<br \>";
            break 2;
        }
        if (!$buf = trim($buf)) {
            continue;
        }
        if ($buf == 'quit') {
            break;
        }
        if ($buf == 'shutdown') {
            socket_close($msgsock);
            break 2;
        }
        $talkback = "PHP: You said '$buf'.<br \>";
        socket_write($msgsock, $talkback, strlen($talkback));
        echo "$buf<br />";
    } while (true);
    socket_close($msgsock);
} while (true);

socket_close($sock);
?>

 

I've assigned the address to receive from anybody '0.0.0.0'

 

The problem is that it tells me:

socket_accept() failed: reason: Success

 

I searched a lot trying to figure this error out but found nothing. Any help, i'd be thankful?

Link to comment
Share on other sites

If socket has been made non-blocking using socket_set_blocking() or socket_set_nonblock(), FALSE will be returned.

 

Your socket is in non-blocking mode so your socket accept call will return false immediately when there is no connection pending.  You need to determine if the failure is due to that, or due to an actual error.  socket_last_error will help with that.

 

 

Either that, or don't use non-blocking sockets.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.