From c09320c651290bbb2a5fd20a33feeabfc5c0eef1 Mon Sep 17 00:00:00 2001 From: "W.C.A. Wijngaards" Date: Mon, 9 Oct 2023 12:36:54 +0200 Subject: [PATCH] - Fix that printout of EDNS options shows the EDNS cookie option by name. --- doc/Changelog | 2 ++ sldns/wire2str.c | 1 + 2 files changed, 3 insertions(+) diff --git a/doc/Changelog b/doc/Changelog index 62ce262d2..62b101dd2 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,6 +1,8 @@ 9 October 2023: Wouter - Fix edns subnet so that queries with a source prefix of zero cause the recursor send no edns subnet option to the upstream. + - Fix that printout of EDNS options shows the EDNS cookie option by + name. 4 October 2023: Wouter - Fix #946: Forwarder returns servfail on upstream response noerror no diff --git a/sldns/wire2str.c b/sldns/wire2str.c index ace478d73..2b5dc0513 100644 --- a/sldns/wire2str.c +++ b/sldns/wire2str.c @@ -192,6 +192,7 @@ static sldns_lookup_table sldns_edns_options_data[] = { { 6, "DHU" }, { 7, "N3U" }, { 8, "edns-client-subnet" }, + { 10, "COOKIE" }, { 11, "edns-tcp-keepalive"}, { 12, "Padding" }, { 15, "EDE"}, -- 2.47.3