(self,q,dns)
| 108 | return val |
| 109 | |
| 110 | def parseQuestions(self,q,dns): |
| 111 | for qname,qclass,qtype in q: |
| 112 | dns.add_question(DNSQuestion(qname, |
| 113 | getattr(QTYPE,qtype), |
| 114 | getattr(CLASS,qclass))) |
| 115 | |
| 116 | def parseAnswers(self,a,auth,ar,dns): |
| 117 | sect_map = {'a':'add_answer','auth':'add_auth','ar':'add_ar'} |
no test coverage detected