Added support for .co, which has the same layout as .cc
This commit is contained in:
parent
3b6d527349
commit
9a4594fd82
|
@ -987,6 +987,14 @@ class m_dom {
|
|||
}
|
||||
}
|
||||
break;
|
||||
case "co":
|
||||
if (preg_match("#Name Server:#", $ligne)) {
|
||||
$found = true;
|
||||
$tmp = strtolower(str_replace(chr(10), "", str_replace(chr(13), "", str_replace(" ", "", str_replace("Name Server:", "", $ligne)))));
|
||||
if ($tmp)
|
||||
$serveurList[] = $tmp;
|
||||
}
|
||||
break;
|
||||
case "cx":
|
||||
$ligne = str_replace(chr(10), "", str_replace(chr(13), "", str_replace(" ", "", $ligne)));
|
||||
if ($ligne == "" && $state == 1) {
|
||||
|
|
Loading…
Reference in New Issue