mirror of
https://github.com/danog/dns.git
synced 2025-01-22 21:41:11 +01:00
15 lines
333 B
PHP
15 lines
333 B
PHP
<?php
|
|
|
|
namespace Amp\Dns;
|
|
|
|
// @codeCoverageIgnoreStart
|
|
const DEFAULT_SERVER = "8.8.8.8";
|
|
const DEFAULT_PORT = 53;
|
|
const DEFAULT_TIMEOUT = 5000;
|
|
const MAX_REQUEST_ID = 65536;
|
|
const IDLE_TIMEOUT = 15000;
|
|
const MODE_INET4 = 1;
|
|
const MODE_INET6 = 2;
|
|
const MODE_CNAME = 3;
|
|
// @codeCoverageIgnoreEnd
|