summaryrefslogtreecommitdiff
path: root/plugins/server/tests/tcp.php
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2020-12-21 19:42:23 +0300
committerValery Piashchynski <[email protected]>2020-12-21 19:42:23 +0300
commitee8b4075c0f836d698d1ae505c87c17147de447a (patch)
tree531d980e5bfb94ee39b03952a97e0445f7955409 /plugins/server/tests/tcp.php
parent0ad45031047bb479e06ce0a0f496c6db9b2641c9 (diff)
Move plugins to the roadrunner-plugins repository
Diffstat (limited to 'plugins/server/tests/tcp.php')
-rw-r--r--plugins/server/tests/tcp.php20
1 files changed, 0 insertions, 20 deletions
diff --git a/plugins/server/tests/tcp.php b/plugins/server/tests/tcp.php
deleted file mode 100644
index c567c982..00000000
--- a/plugins/server/tests/tcp.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?php
-/**
- * @var Goridge\RelayInterface $relay
- */
-
-use Spiral\Goridge;
-use Spiral\RoadRunner;
-
-require dirname(__DIR__) . "/../../tests/vendor/autoload.php";
-
-$relay = new Goridge\SocketRelay("localhost", 9999);
-$rr = new RoadRunner\Worker($relay);
-
-while ($in = $rr->waitPayload()) {
- try {
- $rr->send((string)$in->body);
- } catch (\Throwable $e) {
- $rr->error((string)$e);
- }
-}