2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-31 14:25:41 +00:00

-n master Patch for 30461 and update the auto generated files

Update the auto genrated files to add the required bind9
libraries

Fix up dhcpctl/Makefile.am to include the isccfg lib

Patch for 30461 to allow the DHCP server to find
the name server to update via the DNS
Conflicts:
This commit is contained in:
Shawn Routhier
2013-12-10 04:03:12 +00:00
parent 64fb661cc8
commit e54ff84f08
21 changed files with 847 additions and 45 deletions

View File

@@ -1371,6 +1371,8 @@ struct dns_query {
int backoff; /* Current backoff, in seconds. */
};
#define DNS_ZONE_ACTIVE 0
#define DNS_ZONE_INACTIVE 1
struct dns_zone {
int refcnt;
TIME timeout;
@@ -1380,6 +1382,7 @@ struct dns_zone {
struct option_cache *primary6;
struct option_cache *secondary6;
struct auth_key *key;
u_int16_t flags;
};
struct icmp_state {

View File

@@ -61,6 +61,8 @@
#include <isc/heap.h>
#include <isc/random.h>
#include <irs/resconf.h>
#include <dns/client.h>
#include <dns/fixedname.h>
#include <dns/keyvalues.h>

View File

@@ -117,6 +117,10 @@
#define NSUPDATE
/* Define this if you want to enable the DHCP server attempting to
find a nameserver to use for DDNS updates. */
#define DNS_ZONE_LOOKUP
/* Define this if you want the dhcpd.pid file to go somewhere other than
the default (which varies from system to system, but is usually either
/etc or /var/run. */