mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
From Dag-Erling Smorgrav: The prototype for libworker_event_done_cb()
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
This commit is contained in:
parent
12cffd6263
commit
0121c7ad9f
3 changed files with 7 additions and 5 deletions
|
|
@ -16,7 +16,9 @@
|
||||||
Remove a useless printf which breaks reproducible builds.
|
Remove a useless printf which breaks reproducible builds.
|
||||||
Get rid of CONFIGURE_{TARGET,DATE,BUILD_WITH} now that they're
|
Get rid of CONFIGURE_{TARGET,DATE,BUILD_WITH} now that they're
|
||||||
no longer used. Add unbound-control-setup.sh to the list of
|
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.
|
- Fixup out-of-directory compile with unbound-control-setup.sh.in.
|
||||||
- make depend.
|
- make depend.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -136,10 +136,6 @@ void libworker_delete_event(struct libworker* w);
|
||||||
/** cleanup the cache to remove all rrset IDs from it, arg is libworker */
|
/** cleanup the cache to remove all rrset IDs from it, arg is libworker */
|
||||||
void libworker_alloc_cleanup(void* arg);
|
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
|
* fill result from parsed message, on error fills servfail
|
||||||
* @param res: is clear at start, filled in at end.
|
* @param res: is clear at start, filled in at end.
|
||||||
|
|
|
||||||
|
|
@ -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,
|
void libworker_bg_done_cb(void* arg, int rcode, sldns_buffer* buf,
|
||||||
enum sec_status s, char* why_bogus);
|
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.
|
* Worker signal handler function. User argument is the worker itself.
|
||||||
* @param sig: signal number.
|
* @param sig: signal number.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue