diff options
author | Tomek Mrugalski <tomek@isc.org> | 2011-04-21 17:53:48 +0000 |
---|---|---|
committer | Tomek Mrugalski <tomek@isc.org> | 2011-04-21 17:53:48 +0000 |
commit | 023fbaa03e1eee300d6267ab927fe540f064eaaf (patch) | |
tree | e28011441fbb5f1b11dcb3e5f61d8a08ca3d1c1e /includes | |
parent | 73c83820fe45a87d5381f0ef94c89c69fd81fae7 (diff) | |
download | isc-dhcp-023fbaa03e1eee300d6267ab927fe540f064eaaf.tar.gz |
- Parameters configured to evaluate from user defined function calls can
now be correctly written to dhcpd.leases
- If a 'next-server' parameter is configured in a dynamic host record via
OMAPI as a domain name, the syntax written to disk is now correctly parsed
upon restart. [ISC-Bugs #22266]
Diffstat (limited to 'includes')
-rw-r--r-- | includes/dhctoken.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/includes/dhctoken.h b/includes/dhctoken.h index 766cc593..5bc1e0b6 100644 --- a/includes/dhctoken.h +++ b/includes/dhctoken.h @@ -359,7 +359,8 @@ enum dhcp_token { AUTO_PARTNER_DOWN = 661, GETHOSTNAME = 662, REWIND = 663, - INITIAL_DELAY = 664 + INITIAL_DELAY = 664, + GETHOSTBYNAME = 665 }; #define is_identifier(x) ((x) >= FIRST_TOKEN && \ |