diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2012-08-22 00:14:43 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2012-08-22 00:14:43 +0000 |
commit | c6ae3f45443fa23e8cf51ad53aa5f5f91d5f485f (patch) | |
tree | ab3bf876957f29cdd0bafb5da160c9c795675dae /sbin/dhclient/dhctoken.h | |
parent | 338926dfcc9ce2f85915c4b7d0588d91fb89660b (diff) |
add ignore keyword to conf file, allowing one to ignore unwanted info
from the server without necessarily speciyfing a supersede value
Diffstat (limited to 'sbin/dhclient/dhctoken.h')
-rw-r--r-- | sbin/dhclient/dhctoken.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/dhclient/dhctoken.h b/sbin/dhclient/dhctoken.h index 868fb6a3132..4b27921ce35 100644 --- a/sbin/dhclient/dhctoken.h +++ b/sbin/dhclient/dhctoken.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dhctoken.h,v 1.5 2006/05/15 08:10:57 fkr Exp $ */ +/* $OpenBSD: dhctoken.h,v 1.6 2012/08/22 00:14:42 tedu Exp $ */ /* Tokens for config file lexer and parser. */ @@ -79,6 +79,7 @@ #define TOK_REJECT 292 #define TOK_FDDI 293 #define TOK_LINK_TIMEOUT 294 +#define TOK_IGNORE 295 #define is_identifier(x) ((x) >= TOK_FIRST_TOKEN && \ (x) != TOK_STRING && \ |