From: Wouter Wijngaards Date: Tue, 22 Jan 2008 11:28:07 +0000 (+0000) Subject: fix link testbound. X-Git-Tag: release-0.9~56 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b26f289cccb17d93b001e0b834798173625daffe;p=thirdparty%2Funbound.git fix link testbound. git-svn-id: file:///svn/unbound/trunk@884 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/doc/Changelog b/doc/Changelog index a401ac476..dba6ec7ac 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,5 +1,6 @@ 22 January 2008: Wouter - library code for async in libunbound/unbound.c. + - fix link testbound. 21 January 2008: Wouter - libworker work, netevent raw commpoints, write_msg, serialize. diff --git a/libunbound/worker.h b/libunbound/worker.h index 88545948c..e3950524b 100644 --- a/libunbound/worker.h +++ b/libunbound/worker.h @@ -43,6 +43,7 @@ */ #ifndef LIBUNBOUND_WORKER_H #define LIBUNBOUND_WORKER_H +#include "util/data/packed_rrset.h" struct ub_val_ctx; struct ub_val_result; struct module_env; @@ -56,7 +57,6 @@ struct comm_point; struct comm_reply; struct libworker_res_list; struct regional; -enum sec_status; /** * The library-worker status structure diff --git a/testcode/fake_event.c b/testcode/fake_event.c index f46b6131d..d63102ad6 100644 --- a/testcode/fake_event.c +++ b/testcode/fake_event.c @@ -1041,6 +1041,12 @@ void comm_point_local_handle_callback(int ATTR_UNUSED(fd), log_assert(0); } +void comm_point_raw_handle_callback(int ATTR_UNUSED(fd), + short ATTR_UNUSED(event), void* ATTR_UNUSED(arg)) +{ + log_assert(0); +} + int serviced_udp_callback(struct comm_point* ATTR_UNUSED(c), void* ATTR_UNUSED(arg), int ATTR_UNUSED(error), struct comm_reply* ATTR_UNUSED(reply_info))