Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 216.73.216.148
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
cboden /
ratchet /
src /
Ratchet /
Wamp /
Delete
Unzip
Name
Size
Permission
Date
Action
Exception.php
70
B
-rw-r--r--
2017-12-12 09:00
JsonException.php
904
B
-rw-r--r--
2017-12-12 09:00
ServerProtocol.php
4.65
KB
-rw-r--r--
2017-12-12 09:00
Topic.php
2.32
KB
-rw-r--r--
2017-12-12 09:00
TopicManager.php
3.02
KB
-rw-r--r--
2017-12-12 09:00
WampConnection.php
3.42
KB
-rw-r--r--
2017-12-12 09:00
WampServer.php
1.81
KB
-rw-r--r--
2017-12-12 09:00
WampServerInterface.php
1.92
KB
-rw-r--r--
2017-12-12 09:00
Save
Rename
<?php namespace Ratchet\Wamp; use Ratchet\ComponentInterface; use Ratchet\ConnectionInterface; /** * An extension of Ratchet\ComponentInterface to server a WAMP application * onMessage is replaced by various types of messages for this protocol (pub/sub or rpc) */ interface WampServerInterface extends ComponentInterface { /** * An RPC call has been received * @param \Ratchet\ConnectionInterface $conn * @param string $id The unique ID of the RPC, required to respond to * @param string|Topic $topic The topic to execute the call against * @param array $params Call parameters received from the client */ function onCall(ConnectionInterface $conn, $id, $topic, array $params); /** * A request to subscribe to a topic has been made * @param \Ratchet\ConnectionInterface $conn * @param string|Topic $topic The topic to subscribe to */ function onSubscribe(ConnectionInterface $conn, $topic); /** * A request to unsubscribe from a topic has been made * @param \Ratchet\ConnectionInterface $conn * @param string|Topic $topic The topic to unsubscribe from */ function onUnSubscribe(ConnectionInterface $conn, $topic); /** * A client is attempting to publish content to a subscribed connections on a URI * @param \Ratchet\ConnectionInterface $conn * @param string|Topic $topic The topic the user has attempted to publish to * @param string $event Payload of the publish * @param array $exclude A list of session IDs the message should be excluded from (blacklist) * @param array $eligible A list of session Ids the message should be send to (whitelist) */ function onPublish(ConnectionInterface $conn, $topic, $event, array $exclude, array $eligible); }