- Similar to NSD PR#113, implement that interface names can be used,

eg. something like interface: eth0 is resolved at server start and
  uses the IP addresses for that named interface.
This commit is contained in:
W.C.A. Wijngaards
2020-08-27 14:53:33 +02:00
parent a912786ca9
commit f6a527c25a
11 changed files with 225 additions and 16 deletions
+7
View File
@@ -1300,7 +1300,14 @@ void outnet_serviced_query_stop(struct serviced_query* sq, void* cb_arg)
log_info("double delete of pending serviced query");
}
int resolve_interface_names(struct config_file* ATTR_UNUSED(cfg),
char*** ATTR_UNUSED(resif), int* ATTR_UNUSED(num_resif))
{
return 1;
}
struct listen_port* listening_ports_open(struct config_file* ATTR_UNUSED(cfg),
char** ATTR_UNUSED(ifs), int ATTR_UNUSED(num_ifs),
int* ATTR_UNUSED(reuseport))
{
return calloc(1, 1);