devn00b c2c6bf7610 Initial Upload of Bot 1 yıl önce
..
examples c2c6bf7610 Initial Upload of Bot 1 yıl önce
src c2c6bf7610 Initial Upload of Bot 1 yıl önce
tests c2c6bf7610 Initial Upload of Bot 1 yıl önce
.gitignore c2c6bf7610 Initial Upload of Bot 1 yıl önce
.travis.yml c2c6bf7610 Initial Upload of Bot 1 yıl önce
CHANGELOG.md c2c6bf7610 Initial Upload of Bot 1 yıl önce
LICENSE c2c6bf7610 Initial Upload of Bot 1 yıl önce
README.md c2c6bf7610 Initial Upload of Bot 1 yıl önce
composer.json c2c6bf7610 Initial Upload of Bot 1 yıl önce
phpunit.xml.dist c2c6bf7610 Initial Upload of Bot 1 yıl önce

README.md

Datagram

Build Status

Event-driven UDP datagram socket client and server for ReactPHP.

Quickstart example

Once installed, you can use the following code to connect to an UDP server listening on localhost:1234 and send and receive UDP datagrams:

$loop = React\EventLoop\Factory::create();
$factory = new React\Datagram\Factory($loop);

$factory->createClient('localhost:1234')->then(function (React\Datagram\Socket $client) {
    $client->send('first');

    $client->on('message', function($message, $serverAddress, $client) {
        echo 'received "' . $message . '" from ' . $serverAddress. PHP_EOL;
    });
});

$loop->run();

See also the examples.

Usage

This library's API is modelled after node.js's API for UDP / Datagram Sockets (dgram.Socket).

Install

The recommended way to install this library is through Composer. New to Composer?

This project follows SemVer. This will install the latest supported version:

$ composer require react/datagram:^1.5

See also the CHANGELOG for details about version upgrades.

This project aims to run on any platform and thus does not require any PHP extensions and supports running on legacy PHP 5.3 through current PHP 7+ and HHVM. It's highly recommended to use PHP 7+ for this project.

Tests

To run the test suite, you first need to clone this repo and then install all dependencies through Composer:

$ composer install

To run the test suite, go to the project root and run:

$ php vendor/bin/phpunit

License

MIT, see LICENSE file.