1
0
mirror of https://github.com/danog/dns.git synced 2024-11-27 04:24:48 +01:00
dns/lib/Addr/AddressModes.php
Chris Wright d5b5192ba3 Finished initial implementation
zOMG too many things to document
2014-06-15 00:47:15 +01:00

11 lines
127 B
PHP

<?php
namespace Addr;
class AddressModes
{
const INET4_ADDR = 1;
const INET6_ADDR = 2;
const PREFER_INET6 = 4;
}