while True:
(wire, address) = s.recvfrom(512)
notify = dns.message.from_wire(wire)
- soa = notify.find_rrset(notify.answer, notify.question[0].name,
- dns.rdataclass.IN, dns.rdatatype.SOA)
- # Do something with the SOA RR here
- print('The serial number for', soa.name, 'is', soa[0].serial)
+ try:
+ soa = notify.find_rrset(notify.answer, notify.question[0].name,
+ dns.rdataclass.IN, dns.rdatatype.SOA)
+
+ # Do something with the SOA RR here
+ print('The serial number for', soa.name, 'is', soa[0].serial)
+ except KeyError:
+ # No SOA RR in the answer section.
+ pass
response = dns.message.make_response(notify) # type: dns.message.Message
response.flags |= dns.flags.AA