1
0
mirror of https://github.com/danog/dns.git synced 2024-11-27 04:24:48 +01:00
dns/examples/custom-config.php
2017-09-12 09:38:26 +02:00

27 lines
631 B
PHP

<?php
require __DIR__ . "/../vendor/autoload.php";
use Amp\Dns;
use Amp\Loop;
use Amp\Promise;
$customConfigLoader = new class implements Dns\ConfigLoader {
public function loadConfig(): Promise {
return Amp\call(function () {
$hosts = yield (new Dns\HostLoader)->loadHosts();
return new Dns\Config([
"8.8.8.8:53",
"[2001:4860:4860::8888]:53",
], $hosts, $timeout = 5000, $attempts = 3);
});
}
};
Dns\resolver(new Dns\BasicResolver(null, $customConfigLoader));
Loop::run(function () {
var_dump(yield Dns\resolve("google.com"));
});