Content-type: text/html Man page of Net::DNS::RR::APL::ApItem

Net::DNS::RR::APL::ApItem

Section: User Contributed Perl Documentation (3pm)
Updated: 2009-02-28
Index Return to Main Contents
 

NAME

Net::DNS::RR::APL::ApItem - DNS APL ApItem  

SYNOPSIS

use Net::DNS::RR::APL::ApItem;

my $apitem=Net::DNS::RR::APL::ApItem->new();  

DESCRIPTION

This is an object that contains the Address Prefixes with related information such as address family and possible negation flags for the APL RR. Please see the RFC3123 for details.  

Methods

 

new

Constructor method.

$apitem[0]=Net::DNS::RR::APL::ApItem->new(1:192.168.32.0/21); $apitem[1]=Net::DNS::RR::APL::ApItem->new(!1:192.168.32.0/21); $apitem[2]=Net::DNS::RR::APL::ApItem->new(2:FF00:0:0:0:0:0:0:0/8);

$empty=Net::DNS::RR::APL::ApItem();

Returns undef if the argument cannot be parsed. Returns an object with empty attributes when no argument is supplied.  

string

Returns a string representation of the object in the '[!]afi:address/prefix' format
   $apl=$apitem[0]->string;  

print

Prints the textual representation of the object.
   $apitem[0]->print;
   # same functionality as:
   $apl=$apitem[0]->string;
   print $apl;  

COPYRIGHT

Copyright (c) 2008 Olaf Kolkman (NLnet Labs)

All rights reserved. This program is free software; you may redistribute it and/or modify it under the same terms as Perl itself.  

SEE ALSO

Net::DNS::RR::APL, perl(1), Net::DNS, Net::DNS::Resolver, Net::DNS::Packet, Net::DNS::Header, Net::DNS::Question, Net::DNS::RR, RFC 3123


 

Index

NAME
SYNOPSIS
DESCRIPTION
Methods
new
string
print
COPYRIGHT
SEE ALSO

This document was created by man2html, using the manual pages.
Time: 04:14:17 GMT, September 24, 2010