mirror of
https://github.com/danog/dns.git
synced 2024-12-04 18:37:56 +01:00
d5b5192ba3
zOMG too many things to document
11 lines
146 B
PHP
11 lines
146 B
PHP
<?php
|
|
|
|
namespace Addr;
|
|
|
|
class ResolutionErrors
|
|
{
|
|
const ERR_INVALID_NAME = 1;
|
|
const ERR_NO_RECORD = 2;
|
|
const ERR_SERVER_TIMEOUT = 3;
|
|
}
|