Submit
Path:
~
/
/
proc
/
self
/
root
/
opt
/
psa
/
admin
/
plib
/
vendor
/
plesk
/
ratchetphp
/
src
/
Ratchet
/
Server
/
File Content:
EchoServer.php
<?php namespace Ratchet\Server; use Ratchet\MessageComponentInterface; use Ratchet\ConnectionInterface; /** * A simple Ratchet application that will reply to all messages with the message it received */ class EchoServer implements MessageComponentInterface { public function onOpen(ConnectionInterface $conn) { } public function onMessage(ConnectionInterface $from, $msg) { $from->send($msg); } public function onClose(ConnectionInterface $conn) { } public function onError(ConnectionInterface $conn, \Exception $e) { $conn->close(); } }
Submit
FILE
FOLDER
INFO
Name
Size
Permission
Action
EchoServer.php
610 bytes
0644
IoConnection.php
716 bytes
0644
IoServer.php
4890 bytes
0644
IpBlackList.php
2827 bytes
0644
N4ST4R_ID | Naxtarrr