From 38de5074dbe4154f2ddd2d98ed9e5713cf169edc Mon Sep 17 00:00:00 2001 From: Hannes Mehnert Date: Tue, 13 Jun 2023 09:42:17 +0200 Subject: [PATCH] changes for 7.0.2 --- CHANGES.md | 6 ++++-- README.md | 2 +- src/dns.mli | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 085dfbb18..3f5475cd5 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,8 @@ -### UNRELEASED +### v7.0.2 (2023-06-13) -* dns-server: for secondary servers use the right zone transfers and keys, fixed in #339 by @hannesm +* dns-server: for secondary servers use the right zone transfers and keys, fixed + in #339 by @hannesm +* dns: add support for null record (arbitrary binary data) (#338 @RyanGibb) ### v7.0.1 (2023-02-27) diff --git a/README.md b/README.md index 1be6251b3..9ef9bd37f 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ needs a fully-fledged authoritative nameserver as well (for overriding various zones such as `.localhost` and reverse lookups of RFC 1918 IP ranges). Legacy resource record types are not dealt with, and there is no plan to support -`ISDN`, `MAILA`, `MAILB`, `WKS`, `MB`, `NULL`, `HINFO`, ... . `AXFR`, `IXFR`, +`ISDN`, `MAILA`, `MAILB`, `WKS`, `MB`, `HINFO`, ... . `AXFR`, `IXFR`, and `UPDATE` is only handled via TCP connections. The only resource class supported is `IN` (the Internet). Truncated hmac in `TSIG` are not supported (always the full length of the hash algorithm is used). diff --git a/src/dns.mli b/src/dns.mli index a65cf3afb..077d98e66 100644 --- a/src/dns.mli +++ b/src/dns.mli @@ -834,7 +834,7 @@ module Loc : sig (** [compare a b] compares the Loc record [a] with [b]. *) end -(** Text records *) +(** Null records *) module Null : sig type t = Cstruct.t (** The type of a Null record. *)