]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
From Dag-Erling Smorgrav: The prototype for libworker_event_done_cb()
authorWouter Wijngaards <wouter@nlnetlabs.nl>
Wed, 28 May 2014 08:20:44 +0000 (08:20 +0000)
committerWouter Wijngaards <wouter@nlnetlabs.nl>
Wed, 28 May 2014 08:20:44 +0000 (08:20 +0000)
needs to be moved from libunbound/libworker.h to libunbound/worker.h.

git-svn-id: file:///svn/unbound/trunk@3140 be551aaa-1e26-0410-a405-d3ace91eadb9

doc/Changelog
libunbound/libworker.h
libunbound/worker.h

index f2b5f6fc2bd9d609bf89ac1768ccf6b2a4d0900f..20688f7e81efe6a3af52240c4f7a27443336fa91 100644 (file)
@@ -16,7 +16,9 @@
          Remove a useless printf which breaks reproducible builds.
          Get rid of CONFIGURE_{TARGET,DATE,BUILD_WITH} now that they're
          no longer used.  Add unbound-control-setup.sh to the list of
-         generated files.
+         generated files.  The prototype for libworker_event_done_cb()
+         needs to be moved from libunbound/libworker.h to
+         libunbound/worker.h.
        - Fixup out-of-directory compile with unbound-control-setup.sh.in.
        - make depend.
 
index 59087ba2672c18b3e2feca4b1b0b3955c403741d..0103b5d8898d1ce9ac28b9ff67928db9fc213db8 100644 (file)
@@ -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.
index f6c93890ac48396253026760ee4f6cb098d077f4..d8354c65438493876f072d4ec78172012d785646 100644 (file)
@@ -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.