From d8229aaf73b4146c7957ba00120b3f91085bd0c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Tue, 27 May 2014 23:39:28 +0000 Subject: [PATCH] Move libworker_event_done_cb() from libworker.h to worker.h. --- contrib/unbound/libunbound/libworker.h | 4 ---- contrib/unbound/libunbound/worker.h | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/contrib/unbound/libunbound/libworker.h b/contrib/unbound/libunbound/libworker.h index 59087ba2672c..0103b5d8898d 100644 --- a/contrib/unbound/libunbound/libworker.h +++ b/contrib/unbound/libunbound/libworker.h @@ -136,10 +136,6 @@ void libworker_delete_event(struct libworker* w); /** cleanup the cache to remove all rrset IDs from it, arg is libworker */ void libworker_alloc_cleanup(void* arg); -/** mesh callback with event results */ -void libworker_event_done_cb(void* arg, int rcode, struct sldns_buffer* buf, - enum sec_status s, char* why_bogus); - /** * fill result from parsed message, on error fills servfail * @param res: is clear at start, filled in at end. diff --git a/contrib/unbound/libunbound/worker.h b/contrib/unbound/libunbound/worker.h index f6c93890ac48..d8354c654384 100644 --- a/contrib/unbound/libunbound/worker.h +++ b/contrib/unbound/libunbound/worker.h @@ -91,6 +91,10 @@ void libworker_fg_done_cb(void* arg, int rcode, sldns_buffer* buf, void libworker_bg_done_cb(void* arg, int rcode, sldns_buffer* buf, enum sec_status s, char* why_bogus); +/** mesh callback with event results */ +void libworker_event_done_cb(void* arg, int rcode, struct sldns_buffer* buf, + enum sec_status s, char* why_bogus); + /** * Worker signal handler function. User argument is the worker itself. * @param sig: signal number.