Package dns :: Module rdataset
[hide private]
[frames] | no frames]

Module rdataset

source code

DNS rdatasets (an rdataset is a set of rdatas of a given type and class)

Classes [hide private]
  SimpleSet
A simple set class.
  DifferingCovers
Raised if an attempt is made to add a SIG/RRSIG whose covered type is not the same as that of the other rdatas in the rdataset.
  IncompatibleTypes
Raised if an attempt is made to add rdata of an incompatible type.
  Rdataset
A DNS rdataset.
Functions [hide private]
dns.rdataset.Rdataset object
from_text_list(rdclass, rdtype, ttl, text_rdatas)
Create an rdataset with the specified class, type, and TTL, and with the specified list of rdatas in text format.
source code
dns.rdataset.Rdataset object
from_text(rdclass, rdtype, ttl, *text_rdatas)
Create an rdataset with the specified class, type, and TTL, and with the specified rdatas in text format.
source code
dns.rdataset.Rdataset object
from_rdata_list(ttl, rdatas)
Create an rdataset with the specified TTL, and with the specified list of rdata objects.
source code
dns.rdataset.Rdataset object
from_rdata(ttl, *rdatas)
Create an rdataset with the specified TTL, and with the specified rdata objects.
source code