summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorShawn Routhier <sar@isc.org>2011-09-21 20:36:55 +0000
committerShawn Routhier <sar@isc.org>2011-09-21 20:36:55 +0000
commitd424157d634fbbe61bb6a73638a91b3b17f017ef (patch)
tree47a1d5d5d9db8da88b603693f76f0d184c5e28c2 /includes
parent394c505d2336f81e71e0f8d904332e6b46440ad6 (diff)
downloadisc-dhcp-d424157d634fbbe61bb6a73638a91b3b17f017ef.tar.gz
Add support for passing DDNS information to a DNS server over
an IPv6 address. [ISC-Bugs #22647]
Diffstat (limited to 'includes')
-rw-r--r--includes/dhcpd.h2
-rw-r--r--includes/dhctoken.h4
2 files changed, 5 insertions, 1 deletions
diff --git a/includes/dhcpd.h b/includes/dhcpd.h
index f5240117..ec03b274 100644
--- a/includes/dhcpd.h
+++ b/includes/dhcpd.h
@@ -1356,6 +1356,8 @@ struct dns_zone {
char *name;
struct option_cache *primary;
struct option_cache *secondary;
+ struct option_cache *primary6;
+ struct option_cache *secondary6;
struct auth_key *key;
};
diff --git a/includes/dhctoken.h b/includes/dhctoken.h
index 1d0c9e78..43fa2fe5 100644
--- a/includes/dhctoken.h
+++ b/includes/dhctoken.h
@@ -362,7 +362,9 @@ enum dhcp_token {
GETHOSTNAME = 662,
REWIND = 663,
INITIAL_DELAY = 664,
- GETHOSTBYNAME = 665
+ GETHOSTBYNAME = 665,
+ PRIMARY6 = 666,
+ SECONDARY6 = 667
};
#define is_identifier(x) ((x) >= FIRST_TOKEN && \