Skip to content

Instantly share code, notes, and snippets.

@orestis
Created June 17, 2011 09:39
Show Gist options
  • Save orestis/1031132 to your computer and use it in GitHub Desktop.
Save orestis/1031132 to your computer and use it in GitHub Desktop.
DNS message
(Pdb) mes = e.value.message
(Pdb) mes
<twisted.names.dns.Message instance at 0x102d40ea8>
(Pdb) mes.answer
1
(Pdb) mes.queries
[Query('apple.com', 255, 1)]
(Pdb) mes.answers
[]
(Pdb) mes.additional
[]
(Pdb) mes.authority
[]
(Pdb) mes.opCode
0
(Pdb) mes.auth
0
(Pdb) mes.trunc
0
(Pdb) mes.recDes
1
(Pdb) mes.recAv
1
(Pdb) mes.rCode
2
(Pdb) mes.queries[0]
Query('apple.com', 255, 1)
(Pdb)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment