File: //proc/2/cwd/usr/lib/python2.4/site-packages/dns/rdataset.pyc
mò
Ò¥€Oc @ sÖ d Z d k Z d k Z d k Z d k Z d k Z d k Z d k Z d k Z e i
i Z d e i
i f d „ ƒ YZ d e i
i f d „ ƒ YZ d e i
i f d „ ƒ YZ d „ Z d „ Z d
„ Z d „ Z d S( sH DNS rdatasets (an rdataset is a set of rdatas of a given type and class)Nt DifferingCoversc B s t Z d Z RS( sƒ 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.( t __name__t
__module__t __doc__( ( ( t0 /usr/lib/python2.4/site-packages/dns/rdataset.pyR s t IncompatibleTypesc B s t Z d Z RS( sB Raised if an attempt is made to add rdata of an incompatible type.( R R R ( ( ( R R $ s t Rdatasetc B s t Z d Z d d d d g Z e i i d „ Z d „ Z d „ Z e
d „ Z d „ Z d
„ Z
d „ Z d „ Z d
„ Z d „ Z d „ Z e
e
e e
d „ Z e
e
e
e d „ Z d „ Z RS( sÝ A DNS rdataset.
@ivar rdclass: The class of the rdataset
@type rdclass: int
@ivar rdtype: The type of the rdataset
@type rdtype: int
@ivar covers: The covered type. Usually this value is
dns.rdatatype.NONE, but if the rdtype is dns.rdatatype.SIG or
dns.rdatatype.RRSIG, then the covers value will be the rdata
type the SIG/RRSIG covers. The library treats the SIG and RRSIG
types as if they were a family of
types, e.g. RRSIG(A), RRSIG(NS), RRSIG(SOA). This makes RRSIGs much
easier to work with than if RRSIGs covering different rdata
types were aggregated into a single RRSIG rdataset.
@type covers: int
@ivar ttl: The DNS TTL (Time To Live) value
@type ttl: int
t rdclasst rdtypet coverst ttlc C s; t t | ƒ i ƒ | | _ | | _ | | _ d | _ d S( s© Create a new rdataset of the specified class and type.
@see: the description of the class instance variables for the
meaning of I{rdclass} and I{rdtype}i N( t superR t selft __init__R R R R
( R R R R ( ( R R
>