summaryrefslogtreecommitdiff
path: root/common/conflex.c
diff options
context:
space:
mode:
authorDavid Hankins <dhankins@isc.org>2007-10-31 19:13:33 +0000
committerDavid Hankins <dhankins@isc.org>2007-10-31 19:13:33 +0000
commitb1d3778ce8f2e983e037354df377ac906df6f9fb (patch)
tree54ce090fd6bf77a9b02078f343fc97ef2deea1f6 /common/conflex.c
parente4a6be15e87527df934a17c97809e06276b37599 (diff)
downloadisc-dhcp-b1d3778ce8f2e983e037354df377ac906df6f9fb.tar.gz
- Relative time may now be used as a qualifier for 'allow' and 'deny' access
control lists. These directives may be used to assist in re-addressing address pools without having to constantly reconfigure the server. Please see 'man dhcpd.conf' for more information on allow/deny 'after time' syntax. Thanks to a patch from Christof Chen. [ISC-Bugs #17110]
Diffstat (limited to 'common/conflex.c')
-rw-r--r--common/conflex.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/conflex.c b/common/conflex.c
index fc32a15a..18a840d1 100644
--- a/common/conflex.c
+++ b/common/conflex.c
@@ -732,6 +732,8 @@ intern(char *atom, enum dhcp_token dfv) {
return TOKEN_ACTIVE;
if (!strcasecmp (atom + 1, "tsfp"))
return ATSFP;
+ if (!strcasecmp (atom + 1, "fter"))
+ return AFTER;
break;
case 'b':
if (!strcasecmp (atom + 1, "ackup"))