Initial netmail import

This commit is contained in:
Deon George
2019-05-06 22:29:29 +10:00
parent 9ba790e72c
commit 188fd1a2cf
9 changed files with 344 additions and 71 deletions

View File

@@ -13,6 +13,7 @@ trait ParseNodes
{
$net = FALSE;
$result = collect();
foreach (explode(' ',$line) as $node)
{
if (preg_match('#/#',$node))
@@ -23,7 +24,7 @@ trait ParseNodes
if (! $net)
throw new \Exception('Missing Net?',$node);
$result->push($this->get_node($zone->id,$net,$node,0),$create);
$result->push($this->get_node($zone->id,$net,$node,0,$create));
}
return $result;