|
Server IP : 162.241.148.128 / Your IP : 216.73.216.95 Web Server : Apache System : Linux md-ht-9.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : caribhll ( 2226) PHP Version : 8.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /usr/lib64/python2.7/site-packages/dns/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
�
�$Nc @ 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 Z d d � Z d Z d d � Z
i e d 6e d 6Z d � Z d � Z d
e f d � � YZ d e f d
� � YZ i Z d Z d � Z d e d � Z d d � Z d S( s� DNS rdata.
@var _rdata_modules: A dictionary mapping a (rdclass, rdtype) tuple to
the module which implements that type.
@type _rdata_modules: dict
@var _module_prefix: The prefix to use when forming modules names. The
default is 'dns.rdtypes'. Changing this value will break the library.
@type _module_prefix: string
@var _hex_chunk: At most this many octets that will be represented in each
chunk of hexstring that _hexify() produces before whitespace occurs.
@type _hex_chunk: inti����Ni c C s� | d k r t } n | j d � } t | � } | | k r� g } d } x2 | | k r| | j | | | | !� | | 7} qK Wd j | � } n | S( s Convert a binary string into its hex encoding, broken up into chunks
of I{chunksize} characters separated by a space.
@param data: the binary string
@type data: string
@param chunksize: the chunk size. Default is L{dns.rdata._hex_chunksize}
@rtype: string
t hex_codeci t N( t Nonet _hex_chunksizet encodet lent appendt join( t datat chunksizet hext lt chunkst i( ( s/ /usr/lib64/python2.7/site-packages/dns/rdata.pyt _hexify'