mirror of
https://github.com/danog/dns.git
synced 2024-11-26 20:14:51 +01:00
34 lines
1.0 KiB
PHP
34 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace Amp\Dns;
|
|
|
|
use 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;
|
|
}
|