33 lines
1.1 KiB
PHP
33 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace WP_Ultimo\Dependencies\Amp\Dns;
|
|
|
|
use WP_Ultimo\Dependencies\Amp\Promise;
|
|
interface Resolver
|
|
{
|
|
/**
|
|
* Resolves a hostname name to an IP address [hostname as defined by RFC 3986].
|
|
*
|
|
* Upon success the returned promise resolves to an array of Record objects.
|
|
*
|
|
* A null $ttl value indicates the DNS name was resolved from the cache or the local hosts file.
|
|
*
|
|
* @param string $name The hostname to resolve.
|
|
* @param int $typeRestriction Optional type restriction to `Record::A` or `Record::AAAA`, otherwise `null`.
|
|
*
|
|
* @return Promise
|
|
*/
|
|
public function resolve(string $name, int $typeRestriction = null) : Promise;
|
|
/**
|
|
* Query specific DNS records.
|
|
*
|
|
* Upon success the returned promise resolves to an array of Record objects.
|
|
*
|
|
* @param string $name Record to question, A, AAAA and PTR queries are automatically normalized.
|
|
* @param int $type Use constants of Amp\Dns\Record.
|
|
*
|
|
* @return Promise
|
|
*/
|
|
public function query(string $name, int $type) : Promise;
|
|
}
|