14 lines
210 B
PHP
14 lines
210 B
PHP
|
<?php
|
||
|
/*
|
||
|
File ONLY used to define contstants with 'define' php function.
|
||
|
*/
|
||
|
|
||
|
|
||
|
define ("MAX_LEN_IPV4", 28);
|
||
|
define ("MAX_LEN_IPV6", 64);
|
||
|
|
||
|
define ("MAX_LEN_IPV4_AS0", 32);
|
||
|
define ("MAX_LEN_IPV6_AS0", 128);
|
||
|
|
||
|
?>
|