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.44
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
3 /
ratchet /
rfc6455 /
src /
Handshake /
Delete
Unzip
Name
Size
Permission
Date
Action
ClientNegotiator.php
1.45
KB
-rw-r--r--
2018-05-02 09:00
NegotiatorInterface.php
1.54
KB
-rw-r--r--
2018-05-02 09:00
RequestVerifier.php
4.36
KB
-rw-r--r--
2018-05-02 09:00
ResponseVerifier.php
1.74
KB
-rw-r--r--
2018-05-02 09:00
ServerNegotiator.php
4.79
KB
-rw-r--r--
2018-05-02 09:00
Save
Rename
<?php namespace Ratchet\RFC6455\Handshake; use Psr\Http\Message\RequestInterface; /** * A standard interface for interacting with the various version of the WebSocket protocol * @todo Look in to extension support */ interface NegotiatorInterface { const GUID = '258EAFA5-E914-47DA-95CA-C5AB0DC85B11'; /** * Given an HTTP header, determine if this version should handle the protocol * @param RequestInterface $request * @return bool */ function isProtocol(RequestInterface $request); /** * Although the version has a name associated with it the integer returned is the proper identification * @return int */ function getVersionNumber(); /** * Perform the handshake and return the response headers * @param RequestInterface $request * @return \Psr\Http\Message\ResponseInterface */ function handshake(RequestInterface $request); /** * Add supported protocols. If the request has any matching the response will include one * @param array $protocols */ function setSupportedSubProtocols(array $protocols); /** * If enabled and support for a subprotocol has been added handshake * will not upgrade if a match between request and supported subprotocols * @param boolean $enable * @todo Consider extending this interface and moving this there. * The spec does says the server can fail for this reason, but * it is not a requirement. This is an implementation detail. */ function setStrictSubProtocolCheck($enable); }