1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
* Add a new base class for extracting values (extractor)
* Implement extractors for various values
* Make the statement base class virtual inherited
* In conditions / values, we can get the value by using the << or >> operator
* Mark which conditions and operators work in what hooks
* Better debugging on conditions.
* Add descriptions to conditions and operators.
* Support configurable timeouts
* Support "super-conditions", or nested conditions (if (A) if (b) else if (c) )
Conditions to add
%{REQUEST-HEADER:<hdr>}
%{RESPONSE-HEADER:<hdr>}
%{CLIENT-URL}
%{CLIENT-URL:HOST}
%{CLIENT-URL:PORT}
%{CLIENT-URL:PATH}
%{CLIENT-URL:QUERY}
%{CLIENT-URL:PARAMS}
%{SERVER-URL}
%{SERVER-URL:HOST}
%{SERVER-URL:PORT}
%{SERVER-URL:PATH}
%{SERVER-URL:QUERY}
%{SERVER-URL:PARAMS}
|