summaryrefslogtreecommitdiff
path: root/includes/tree.h
diff options
context:
space:
mode:
authorDavid Hankins <dhankins@isc.org>2007-06-07 15:52:30 +0000
committerDavid Hankins <dhankins@isc.org>2007-06-07 15:52:30 +0000
commitdd3282251eb1d2ea411d09f0ccdb079a891aa4ce (patch)
treec5f07e7d3b56b32a6a74c6c380f0325ab79fdf67 /includes/tree.h
parenta546f2a714b15049860d0cb60a6e8e2ea8ee7418 (diff)
downloadisc-dhcp-dd3282251eb1d2ea411d09f0ccdb079a891aa4ce.tar.gz
- Two new operators, ~= and ~~, have been integrated to implement
boolean matches by regular expression (such as may be used in class matching statements). Thanks to a patch by Alexandr S. Agranovsky, which underwent slight modification. [ISC-Bugs #8155]
Diffstat (limited to 'includes/tree.h')
-rw-r--r--includes/tree.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/includes/tree.h b/includes/tree.h
index b357b25c..8ce66c4b 100644
--- a/includes/tree.h
+++ b/includes/tree.h
@@ -193,7 +193,9 @@ enum expr_op {
expr_binary_xor,
expr_client_state,
expr_ucase,
- expr_lcase
+ expr_lcase,
+ expr_regex_match,
+ expr_iregex_match
};
struct expression {