We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a72cb29 commit f7cba8dCopy full SHA for f7cba8d
1 file changed
lib/request/dns.py
@@ -54,7 +54,7 @@ def response(self, resolution):
54
retVal += "\xc0\x0c" # Pointer to domain name
55
retVal += "\x00\x01" # Type A
56
retVal += "\x00\x01" # Class IN
57
- retVal += "\x00\x00\x00\x05" # TTL
+ retVal += "\x00\x00\x00\x00" # TTL (don't cache)
58
retVal += "\x00\x04" # Data length
59
retVal += "".join(chr(int(_)) for _ in resolution.split('.')) # 4 bytes of IP
60
0 commit comments