mirror of
https://github.com/danog/dns.git
synced 2024-11-27 04:24:48 +01:00
d5b5192ba3
zOMG too many things to document
11 lines
127 B
PHP
11 lines
127 B
PHP
<?php
|
|
|
|
namespace Addr;
|
|
|
|
class AddressModes
|
|
{
|
|
const INET4_ADDR = 1;
|
|
const INET6_ADDR = 2;
|
|
const PREFER_INET6 = 4;
|
|
}
|