daemon code.

git-svn-id: file:///svn/unbound/trunk@136 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards
2007-02-22 16:22:54 +00:00
parent 618ef6acbb
commit d5de0d10d5
12 changed files with 382 additions and 34 deletions
+11
View File
@@ -690,4 +690,15 @@ pending_udp_query(struct outside_network* outnet, ldns_buffer* packet,
runtime->pending_list = pend;
}
struct listen_port* listening_ports_open(struct config_file* ATTR_UNUSED(cfg))
{
return calloc(1, 1);
}
void listening_ports_free(struct listen_port* list)
{
free(list);
}
/*********** End of Dummy routines ***********/