logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Net::LDNS::RR - common baseclass for all classes representing resource records.

Class Method

       new($string)
           Creates  a  new  RR  object  of  a  suitable  subclass,  given  a string representing an RR in common
           presentation format.

Instance Methods

owner()name()
           These two both return the owner name of the RR.

       ttl()
           Returns the ttl of the RR.

       type()
           Return the type of the RR.

       class()
           Returns the class of the RR.

       string()
           Returns a string with the RR in presentation format.

       do_compare($other)
           Calls the XS "compare" method with the arguments it needs, rather than the ones overloading gives.

       to_string
           Calls the XS "string" method with the arguments it needs, rather than  the  ones  overloading  gives.
           Functionally identical to string() from the Perl level, except for being a tiny little bit slower.

       rd_count()
           The number of RDATA objects in this RR.

       rdf($postion)
           The  raw  data  of  the  RDATA  object  in the given position. The first item is in position 0. If an
           attempt is made to fetch RDATA from a position that doesn't have any, an exception will be thrown.

perl v5.40.0                                       2024-10-20                                 Net::LDNS::RR(3pm)

Name

       Net::LDNS::RR - common baseclass for all classes representing resource records.

Overloads

       This class overloads stringify and comparisons ('""', '<=>' and 'cmp').

Synopsis

           my $rr = Net::LDNS::RR->new('www.iis.se IN A 91.226.36.46');

See Also