Skip to content

Commit

Permalink
- Fix for dnstap compile of doqclient with doq disabled.
Browse files Browse the repository at this point in the history
  • Loading branch information
wcawijngaards committed Oct 9, 2024
1 parent 36461ea commit 66fb3ff
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions doc/Changelog
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
16 changes: 16 additions & 0 deletions testcode/doqclient.c
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 66fb3ff

Please sign in to comment.