mirror of
https://github.com/danog/dns.git
synced 2024-12-03 18:07:53 +01:00
6fcf8b4d07
Fix for #3
12 lines
185 B
PHP
12 lines
185 B
PHP
<?php
|
|
|
|
namespace Addr;
|
|
|
|
class ResolutionErrors
|
|
{
|
|
const ERR_INVALID_NAME = 1;
|
|
const ERR_NO_RECORD = 2;
|
|
const ERR_SERVER_TIMEOUT = 3;
|
|
const ERR_REQUEST_SEND_FAILED = 4;
|
|
}
|