aboutsummaryrefslogtreecommitdiffhomepage
path: root/assets/php/vendor/react/socket/examples/03-http-server.php
diff options
context:
space:
mode:
authormarvin-borner@live.com2018-04-16 21:09:05 +0200
committermarvin-borner@live.com2018-04-16 21:09:05 +0200
commitcf14306c2b3f82a81f8d56669a71633b4d4b5fce (patch)
tree86700651aa180026e89a66064b0364b1e4346f3f /assets/php/vendor/react/socket/examples/03-http-server.php
parent619b01b3615458c4ed78bfaeabb6b1a47cc8ad8b (diff)
Main merge to user management system - files are now at /main/public/
Diffstat (limited to 'assets/php/vendor/react/socket/examples/03-http-server.php')
-rwxr-xr-xassets/php/vendor/react/socket/examples/03-http-server.php57
1 files changed, 0 insertions, 57 deletions
diff --git a/assets/php/vendor/react/socket/examples/03-http-server.php b/assets/php/vendor/react/socket/examples/03-http-server.php
deleted file mode 100755
index eb6d454..0000000
--- a/assets/php/vendor/react/socket/examples/03-http-server.php
+++ /dev/null
@@ -1,57 +0,0 @@
-<?php
-
-// Simple HTTP server example (for illustration purposes only).
-// This shows how a plaintext TCP/IP connection is accepted to then receive an
-// application level protocol message (HTTP request) and reply with an
-// application level protocol message (HTTP response) in return.
-//
-// This example exists for illustraion purposes only. It does not actually
-// parse incoming HTTP requests, so you can actually send *anything* and will
-// still respond with a valid HTTP response.
-// Real applications should use react/http instead!
-//
-// Just start this server and send a request to it:
-//
-// $ php examples/03-http-server.php 8000
-// $ curl -v http://localhost:8000/
-// $ ab -n1000 -c10 http://localhost:8000/
-// $ docker run -it --rm --net=host jordi/ab ab -n1000 -c10 http://localhost:8000/
-//
-// You can also run a secure HTTPS echo server like this:
-//
-// $ php examples/03-http-server.php tls://127.0.0.1:8000 examples/localhost.pem
-// $ curl -v --insecure https://localhost:8000/
-// $ ab -n1000 -c10 https://localhost:8000/
-// $ docker run -it --rm --net=host jordi/ab ab -n1000 -c10 https://localhost:8000/
-//
-// You can also run a Unix domain socket (UDS) server like this:
-//
-// $ php examples/03-http-server.php unix:///tmp/server.sock
-// $ nc -U /tmp/server.sock
-
-use React\EventLoop\Factory;
-use React\Socket\Server;
-use React\Socket\ConnectionInterface;
-
-require __DIR__ . '/../vendor/autoload.php';
-
-$loop = Factory::create();
-
-$server = new Server(isset($argv[1]) ? $argv[1] : 0, $loop, array(
- 'tls' => array(
- 'local_cert' => isset($argv[2]) ? $argv[2] : (__DIR__ . '/localhost.pem')
- )
-));
-
-$server->on('connection', function (ConnectionInterface $conn) {
- $conn->once('data', function () use ($conn) {
- $body = "<html><h1>Hello world!</h1></html>\r\n";
- $conn->end("HTTP/1.1 200 OK\r\nContent-Length: " . strlen($body) . "\r\nConnection: close\r\n\r\n" . $body);
- });
-});
-
-$server->on('error', 'printf');
-
-echo 'Listening on ' . strtr($server->getAddress(), array('tcp:' => 'http:', 'tls:' => 'https:')) . PHP_EOL;
-
-$loop->run();