This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""DNS Authenticator using RFC 2136 Dynamic Updates.""" | |
import logging | |
import dns.flags | |
import dns.message | |
import dns.name | |
import dns.query | |
import dns.rdataclass | |
import dns.rdatatype | |
import dns.tsig |