From: Ted Lemon Date: Tue, 15 Feb 2000 19:42:48 +0000 (+0000) Subject: Add arithmetic, function, and tsig key. X-Git-Tag: V3-BETA-2-PATCH-1~307 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=811e0e67f11f6c1f5e193bc5602e21eebad50987;p=thirdparty%2Fdhcp.git Add arithmetic, function, and tsig key. --- diff --git a/includes/dhctoken.h b/includes/dhctoken.h index 10a0677fa..b6809c168 100644 --- a/includes/dhctoken.h +++ b/includes/dhctoken.h @@ -33,6 +33,9 @@ enum dhcp_token { EQUAL = '=', BANG = '!', PERCENT = '%', + PLUS = '+', + MINUS = '-', + ASTERISK = '*', HOST = 256, FIRST_TOKEN = HOST, @@ -229,7 +232,10 @@ enum dhcp_token { DEFINED, UNSET, EVAL, - LET + LET, + FUNCTION, + DEFINE, + TSIG_KEY }; #define is_identifier(x) ((x) >= FIRST_TOKEN && \