Makes compile and test pass.

git-svn-id: file:///svn/unbound/trunk@148 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards
2007-02-26 16:11:32 +00:00
parent 1dca586a28
commit af2f95454a
2 changed files with 20 additions and 0 deletions
+13
View File
@@ -698,5 +698,18 @@ void listening_ports_free(struct listen_port* list)
free(list);
}
struct comm_point* comm_point_create_local(struct comm_base* ATTR_UNUSED(base),
int ATTR_UNUSED(fd), size_t ATTR_UNUSED(bufsize),
comm_point_callback_t* ATTR_UNUSED(callback),
void* ATTR_UNUSED(callback_arg))
{
return calloc(1, 1);
}
/* only cmd com _local gets deleted */
void comm_point_delete(struct comm_point* c)
{
free(c);
}
/*********** End of Dummy routines ***********/