|
|
|
@ -471,12 +471,12 @@ class DME2(object):
|
|
|
|
if not self.all_records:
|
|
|
|
if not self.all_records:
|
|
|
|
self.all_records = self.getRecords()
|
|
|
|
self.all_records = self.getRecords()
|
|
|
|
|
|
|
|
|
|
|
|
if record_type in ["A", "AAAA", "CNAME", "ANAME", "HTTPRED", "PTR"]:
|
|
|
|
if record_type in ["CNAME", "ANAME", "HTTPRED", "PTR"]:
|
|
|
|
for result in self.all_records:
|
|
|
|
for result in self.all_records:
|
|
|
|
if result['name'] == record_name and result['type'] == record_type:
|
|
|
|
if result['name'] == record_name and result['type'] == record_type:
|
|
|
|
return result
|
|
|
|
return result
|
|
|
|
return False
|
|
|
|
return False
|
|
|
|
elif record_type in ["MX", "NS", "TXT", "SRV"]:
|
|
|
|
elif record_type in ["A", "AAAA", "MX", "NS", "TXT", "SRV"]:
|
|
|
|
for result in self.all_records:
|
|
|
|
for result in self.all_records:
|
|
|
|
if record_type == "MX":
|
|
|
|
if record_type == "MX":
|
|
|
|
value = record_value.split(" ")[1]
|
|
|
|
value = record_value.split(" ")[1]
|
|
|
|
|