From be1182c3db4347ba4314ebd199a75da9bab64d46 Mon Sep 17 00:00:00 2001 From: "W.C.A. Wijngaards" Date: Wed, 24 Jun 2020 13:33:47 +0200 Subject: [PATCH 1/2] - iana portlist updated. --- doc/Changelog | 3 +++ util/iana_ports.inc | 2 ++ 2 files changed, 5 insertions(+) diff --git a/doc/Changelog b/doc/Changelog index 00d2ecfcf..9b54f491a 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,6 @@ +24 June 2020: Wouter + - iana portlist updated. + 17 June 2020: Wouter - Fix default explanation in man page for qname-minimisation-strict. - Fix display of event loop method with libev. diff --git a/util/iana_ports.inc b/util/iana_ports.inc index b26677efb..79488f49a 100644 --- a/util/iana_ports.inc +++ b/util/iana_ports.inc @@ -3771,6 +3771,7 @@ 4188, 4191, 4192, +4195, 4197, 4199, 4300, @@ -5230,6 +5231,7 @@ 18241, 18262, 18463, +18516, 18634, 18635, 18668, From 2a90e8fa1e22aa75d1cf67a1f71ebbf3f920366b Mon Sep 17 00:00:00 2001 From: "W.C.A. Wijngaards" Date: Wed, 24 Jun 2020 13:37:43 +0200 Subject: [PATCH 2/2] - doxygen file comments for dynlibmodule. --- doc/Changelog | 1 + dynlibmod/dynlibmod.c | 6 ++++++ dynlibmod/examples/helloworld.c | 4 +++- 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/doc/Changelog b/doc/Changelog index 9b54f491a..ff3810b9d 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,5 +1,6 @@ 24 June 2020: Wouter - iana portlist updated. + - doxygen file comments for dynlibmodule. 17 June 2020: Wouter - Fix default explanation in man page for qname-minimisation-strict. diff --git a/dynlibmod/dynlibmod.c b/dynlibmod/dynlibmod.c index 09b6cd40f..f9751d8c6 100644 --- a/dynlibmod/dynlibmod.c +++ b/dynlibmod/dynlibmod.c @@ -1,3 +1,9 @@ +/** + * \file + * This file contains the dynamic library module for Unbound. + * This loads a dynamic library (.dll, .so) and calls that for the + * module actions. + */ #include "config.h" #include "util/module.h" #include "util/config_file.h" diff --git a/dynlibmod/examples/helloworld.c b/dynlibmod/examples/helloworld.c index 2ec50223e..acb6b5d9b 100644 --- a/dynlibmod/examples/helloworld.c +++ b/dynlibmod/examples/helloworld.c @@ -1,4 +1,6 @@ -/* +/** + * \file + * * This is an example to show how dynamic libraries can be made to work with * unbound. To build a .so file simply run: * gcc -I../.. -shared -Wall -Werror -fpic -o helloworld.so helloworld.c