blob: 08381f9c30c4a524f94c7ea3b8eca5632b926b83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
.. module:: dns.message
.. _message:
DNS Messages
============
Objects of the dns.message.Message class and its subclasses represent
a single DNS message, as defined by `RFC 1035
<https://tools.ietf.org/html/rfc1035>`_ and its many updates and
extensions.
The module provides tools for constructing and manipulating messages.
TSIG signatures and EDNS are also supported. Messages can be dumped to
a textual form, and also read from that form.
.. toctree::
message-class
message-make
message-flags
message-opcode
message-rcode
message-edns
message-query
message-update
|