fixes for arin
This commit is contained in:
parent
4151fc2eec
commit
0c68a9b008
4 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,6 @@
|
|||
2011/08/07
|
||||
- fixes for arin (bug #3339783)
|
||||
|
||||
2011/06/26
|
||||
- added handler for gandi (request #3155752)
|
||||
- added handler for .cl
|
||||
|
|
|
@ -41,7 +41,7 @@ class arin_handler
|
|||
'OrgName:' => 'owner.organization',
|
||||
'CustName:' => 'owner.organization',
|
||||
'OrgId:' => 'owner.handle',
|
||||
'Address:' => 'owner.address.street',
|
||||
'Address:' => 'owner.address.street.',
|
||||
'City:' => 'owner.address.city',
|
||||
'StateProv:' => 'owner.address.state',
|
||||
'PostalCode:' => 'owner.address.pcode',
|
||||
|
|
|
@ -103,6 +103,8 @@ class ip_handler extends WhoisClient
|
|||
|
||||
foreach($rwdata as $line)
|
||||
{
|
||||
if (!strncmp($line,'American Registry for Internet Numbers',38)) continue;
|
||||
|
||||
$p = strpos($line, '(NETBLK-');
|
||||
|
||||
if ($p === false) $p = strpos($line, '(NET-');
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue