404

[ Avaa Bypassed ]




Upload:

Command:

botdev@18.189.188.157: ~ $
<?php

namespace React\Dns\Query;

class Query
{
    public $name;
    public $type;
    public $class;

    /**
     * @deprecated still used internally for BC reasons, should not be used externally.
     */
    public $currentTime;

    /**
     * @param string   $name        query name, i.e. hostname to look up
     * @param int      $type        query type, see Message::TYPE_* constants
     * @param int      $class       query class, see Message::CLASS_IN constant
     * @param int|null $currentTime (deprecated) still used internally, should not be passed explicitly anymore.
     */
    public function __construct($name, $type, $class, $currentTime = null)
    {
        if($currentTime === null) {
            $currentTime = time();
        }

        $this->name = $name;
        $this->type = $type;
        $this->class = $class;
        $this->currentTime = $currentTime;
    }
}

Filemanager

Name Type Size Permission Actions
CachedExecutor.php File 1.48 KB 0644
CancellationException.php File 93 B 0644
Executor.php File 5.13 KB 0644
ExecutorInterface.php File 121 B 0644
HostsFileExecutor.php File 3 KB 0644
Query.php File 898 B 0644
RecordBag.php File 503 B 0644
RecordCache.php File 3.77 KB 0644
RetryExecutor.php File 2.46 KB 0644
TimeoutException.php File 81 B 0644
TimeoutExecutor.php File 913 B 0644
UdpTransportExecutor.php File 5.49 KB 0644