Date: Tue, 27 May 2014 23:39:28 +0000 (UTC) From: Dag-Erling Smørgrav <des@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r266777 - head/contrib/unbound/libunbound Message-ID: <201405272339.s4RNdSIQ093589@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: des Date: Tue May 27 23:39:28 2014 New Revision: 266777 URL: http://svnweb.freebsd.org/changeset/base/266777 Log: Move libworker_event_done_cb() from libworker.h to worker.h. Modified: head/contrib/unbound/libunbound/libworker.h head/contrib/unbound/libunbound/worker.h Modified: head/contrib/unbound/libunbound/libworker.h ============================================================================== --- head/contrib/unbound/libunbound/libworker.h Tue May 27 23:05:12 2014 (r266776) +++ head/contrib/unbound/libunbound/libworker.h Tue May 27 23:39:28 2014 (r266777) @@ -136,10 +136,6 @@ void libworker_delete_event(struct libwo /** 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. Modified: head/contrib/unbound/libunbound/worker.h ============================================================================== --- head/contrib/unbound/libunbound/worker.h Tue May 27 23:05:12 2014 (r266776) +++ head/contrib/unbound/libunbound/worker.h Tue May 27 23:39:28 2014 (r266777) @@ -91,6 +91,10 @@ void libworker_fg_done_cb(void* arg, int 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.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405272339.s4RNdSIQ093589>