1
0
Fork 0
dn42-roagen/lib/constants.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);
?>