2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-22 09:57:20 +00:00

Add PICK, DEFINED, UNSET, EVAL, LET. Delete DDNS_FWD_NAME, DDNS_REV_NAME.

This commit is contained in:
Ted Lemon 2000-01-25 01:18:06 +00:00
parent 7f6ad5aca9
commit d7d2cbe8c8

View File

@ -114,9 +114,6 @@ enum dhcp_token {
MIN_SECS = 333,
AND = 334,
OR = 335,
#if 0
NOT = 336,
#endif
SUBSTRING = 337,
SUFFIX = 338,
CHECK = 339,
@ -180,12 +177,10 @@ enum dhcp_token {
SPACE = 397,
CONCAT = 398,
ENCODE_INT = 399,
DDNS_FWD_NAME = 400,
DDNS_REV_NAME = 401,
REVERSE = 402,
LEASED_ADDRESS = 403,
BINARY_TO_ASCII = 404,
PICK_FIRST_VALUE = 405,
PICK = 405,
CONFIG_OPTION = 406,
HOST_DECL_NAME = 407,
ON = 408,
@ -230,7 +225,10 @@ enum dhcp_token {
NS_YXRRSET,
TOKEN_NULL,
TOKEN_SET,
DEFINED
DEFINED,
UNSET,
EVAL,
LET
};
#define is_identifier(x) ((x) >= FIRST_TOKEN && \