]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- doxygen file comments for dynlibmodule.
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Wed, 24 Jun 2020 11:37:43 +0000 (13:37 +0200)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Wed, 24 Jun 2020 11:37:43 +0000 (13:37 +0200)
doc/Changelog
dynlibmod/dynlibmod.c
dynlibmod/examples/helloworld.c

index 9b54f491a480474a748a773b47553a05ba267185..ff3810b9dd9fa9bde637b7efe5f6c1025ed59c0e 100644 (file)
@@ -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.
index 09b6cd40f0bea7e00ee917a17976be4f2c1d132a..f9751d8c6f73a68c3a0e51443354747f7adc925a 100644 (file)
@@ -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"
index 2ec50223e2d5e7774f5dc65db29d11d918f98088..acb6b5d9bda6a128d871f9b3e61a85713f22b7bb 100644 (file)
@@ -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