mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
fix link testbound.
git-svn-id: file:///svn/unbound/trunk@884 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
parent
0e000a8587
commit
b26f289ccc
3 changed files with 8 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Reference in a new issue