diff options
| author | Nils Wisiol <mail@nils-wisiol.de> | 2020-08-27 09:47:02 +0200 |
|---|---|---|
| committer | Nils Wisiol <mail@nils-wisiol.de> | 2020-08-27 09:49:46 +0200 |
| commit | 0f19845344b468325d3fc6d3919ccc0869b6ca9d (patch) | |
| tree | 54ac3eb88c15aa67d59b49c99232bdcf06cf1e3d /doc | |
| parent | d6a95982fcd454a10467260bfb874c3c9d31d06f (diff) | |
| download | dnspython-0f19845344b468325d3fc6d3919ccc0869b6ca9d.tar.gz | |
Adds SMIMEA record type, RFC 8162
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/rdata-subclasses.rst | 19 | ||||
| -rw-r--r-- | doc/rdatatype-list.rst | 2 | ||||
| -rw-r--r-- | doc/rfc.rst | 2 |
3 files changed, 23 insertions, 0 deletions
diff --git a/doc/rdata-subclasses.rst b/doc/rdata-subclasses.rst index 347610e..17a537a 100644 --- a/doc/rdata-subclasses.rst +++ b/doc/rdata-subclasses.rst @@ -433,6 +433,25 @@ Rdata Subclass Reference A ``dns.name.Name``, the exchange name. +.. autoclass:: dns.rdtypes.ANY.SMIMEA.SMIMEA + :members: + + .. attribute:: usage + + An ``int``, the certificate usage. + + .. attribute:: selector + + An ``int``, the selector. + + .. attribute:: mtype + + An ``int``, the matching type. + + .. attribute:: cert + + A ``bytes``, the certificate association data. + .. autoclass:: dns.rdtypes.ANY.SOA.SOA :members: diff --git a/doc/rdatatype-list.rst b/doc/rdatatype-list.rst index df21370..ed52611 100644 --- a/doc/rdatatype-list.rst +++ b/doc/rdatatype-list.rst @@ -111,6 +111,8 @@ Rdatatypes :annotation: = 46 .. py:data:: dns.rdatatype.RT :annotation: = 21 +.. py:data:: dns.rdatatype.SMIMEA + :annotation: = 53 .. py:data:: dns.rdatatype.SIG :annotation: = 24 .. py:data:: dns.rdatatype.SOA diff --git a/doc/rfc.rst b/doc/rfc.rst index 257790c..e5aed95 100644 --- a/doc/rfc.rst +++ b/doc/rfc.rst @@ -141,6 +141,8 @@ PTR `RFC 1035 <https://tools.ietf.org/html/rfc1035>`_ RRSIG `RFC 4034 <https://tools.ietf.org/html/rfc4034>`_ +SMIMEA + `RFC 8162 <https://tools.ietf.org/html/rfc8162>`_ SOA `RFC 1035 <https://tools.ietf.org/html/rfc1035>`_ SPF |
