1
0
mirror of https://github.com/danog/dns.git synced 2024-11-27 04:24:48 +01:00
dns/lib/Addr/AddressModes.php

11 lines
127 B
PHP
Raw Normal View History

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