| 233 | |
| 234 | |
| 235 | class DNSResponse(object): |
| 236 | def __init__(self): |
| 237 | self.hostname = None |
| 238 | self.questions = [] # each: (addr, type, class) |
| 239 | self.answers = [] # each: (addr, type, class) |
| 240 | |
| 241 | def __str__(self): |
| 242 | return '%s: %s' % (self.hostname, str(self.answers)) |
| 243 | |
| 244 | |
| 245 | STATUS_FIRST = 0 |