| 381 | |
| 382 | # Technically this is a subclass of A |
| 383 | class NONEFOUND(DNSResponse): |
| 384 | def __init__(self, query): |
| 385 | super(NONEFOUND, self).__init__(query) |
| 386 | self.type = query.type |
| 387 | self.flags = b"\x81\x83" |
| 388 | self.rranswers = b"\x00\x00" |
| 389 | self.length = b"\x00\x00" |
| 390 | self.data = b"\x00" |
| 391 | print(">> Built NONEFOUND response") |
| 392 | |
| 393 | |
| 394 | class Rule (object): |