OpenSwoole Hook UDG

4.x is outdated, please check the latest version 22.x


Latest version: pecl install openswoole-22.1.2

The SWOOLE_HOOK_UDG flag will enable coroutine support for Unix Dgram sockets and streams. Support was added in OpenSwoole v4.2.0.

Example

<?php

Co::set(['hook_flags' => SWOOLE_HOOK_UDG]);

Co\run(function()
{
    $socket = stream_socket_server(
        'udg://swoole.sock',
        $errno,
        $errstr,
        STREAM_SERVER_BIND
    );

    if(!$socket)
    {
        echo "$errstr ($errno)" . PHP_EOL;
        exit(1);
    }

    while(stream_socket_recvfrom($socket, 1, 0))
    {
        // ...
    }
});
Last updated on August 31, 2022