]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
- Fix for dnstap compile of doqclient with doq disabled.
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Wed, 9 Oct 2024 13:52:33 +0000 (15:52 +0200)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Wed, 9 Oct 2024 13:52:33 +0000 (15:52 +0200)
doc/Changelog
testcode/doqclient.c

index fd5f506a7b806024ea4e5ce313bade82ccd692f9..707d3d6450cba8def8cb7c3325f4a189b5fb70e5 100644 (file)
@@ -7,6 +7,7 @@
          pass that with `--with-ssl=path` to compile unbound as well.
        - Fix to limit NSEC TTL for messages from cachedb. Fix to limit the
          prefetch ttl for messages after a CNAME with short TTL.
+       - Fix for dnstap compile of doqclient with doq disabled.
 
 8 October 2024: Wouter
        - Fix #1149: unbound-control-setup hangs sometimes depending on
index 4ba4f8c4098a5ed771568960002f38caa190eee8..1a2fd418359bc4235d72be357279ebf5fe20fc9f 100644 (file)
@@ -2683,3 +2683,19 @@ void remote_get_opt_ssl(char* ATTR_UNUSED(str), void* ATTR_UNUSED(arg))
 {
         log_assert(0);
 }
+
+#ifdef USE_DNSTAP
+void dtio_tap_callback(int ATTR_UNUSED(fd), short ATTR_UNUSED(ev),
+       void* ATTR_UNUSED(arg))
+{
+       log_assert(0);
+}
+#endif
+
+#ifdef USE_DNSTAP
+void dtio_mainfdcallback(int ATTR_UNUSED(fd), short ATTR_UNUSED(ev),
+       void* ATTR_UNUSED(arg))
+{
+       log_assert(0);
+}
+#endif