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 : 18.188.73.229
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-test /
vendor /
react /
stream /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
Stub
[ DIR ]
drwxr-xr-x
2018-07-11 14:38
CallableStub.php
104
B
-rw-r--r--
2018-07-11 14:38
CompositeStreamTest.php
8.21
KB
-rw-r--r--
2018-07-11 14:38
DuplexResourceStreamIntegrationTest.php
10.06
KB
-rw-r--r--
2018-07-11 14:38
DuplexResourceStreamTest.php
14.42
KB
-rw-r--r--
2018-07-11 14:38
EnforceBlockingWrapper.php
656
B
-rw-r--r--
2018-07-11 14:38
FunctionalInternetTest.php
3.4
KB
-rw-r--r--
2018-07-11 14:38
ReadableResourceStreamTest.php
10.8
KB
-rw-r--r--
2018-07-11 14:38
TestCase.php
1.15
KB
-rw-r--r--
2018-07-11 14:38
ThroughStreamTest.php
7.09
KB
-rw-r--r--
2018-07-11 14:38
UtilTest.php
7.89
KB
-rw-r--r--
2018-07-11 14:38
WritableStreamResourceTest.php
16.06
KB
-rw-r--r--
2018-07-11 14:38
Save
Rename
<?php namespace React\Tests\Stream; /** * Used to test dummy stream resources that do not support setting non-blocking mode * * @link http://php.net/manual/de/class.streamwrapper.php */ class EnforceBlockingWrapper { public function stream_open($path, $mode, $options, &$opened_path) { return true; } public function stream_cast($cast_as) { return false; } public function stream_eof() { return false; } public function stream_set_option($option, $arg1, $arg2) { if ($option === STREAM_OPTION_BLOCKING) { return false; } return true; } }