File: RRList.pm

package info (click to toggle)
libnet-ldns-perl 0.75-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 5,760 kB
  • sloc: ansic: 27,260; perl: 2,284; makefile: 7
file content (33 lines) | stat: -rw-r--r-- 441 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package Net::LDNS::RRList;

1;

=head1 NAME

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

=head1 SYNOPSIS

    my $rrlist = $packet->all;

=head1 INSTANCE METHODS

=over

=item count()

Returns the number of items in the list.

=item push($rr)

Pushes an RR onto the list.

=item pop()

Pops an RR off the list.

=item is_rrset()

Returns true or false depending on if the list is an RRset or not.

=back