1
0
mirror of https://github.com/danog/dns.git synced 2024-12-02 09:27:55 +01:00
dns/lib/Addr/AddressModes.php
Chris Wright 3d81d18176 Fix hosts file bug and tests
Thanks to @Danack
2014-07-22 16:18:26 +01:00

17 lines
272 B
PHP

<?php
namespace Addr;
class AddressModes
{
const INET4_ADDR = 0b0001;
const INET6_ADDR = 0b0010;
const PREFER_INET6 = 0b0100;
const ANY_PREFER_INET4 = 0b0011;
const ANY_PREFER_INET6 = 0b0111;
const CNAME = 0b1000;
}