Willy Tarreau ca81887599 MINOR: cfgcond: insert an expression between the condition and the term
Now evaluating a condition will rely on an expression (or an empty string),
and this expression will support ORing a sub-expression with another
optional expression. The sub-expressions ANDs a term with another optional
sub-expression. With this alone precedence between && and || is respected,
and the following expression:

     A && B && C || D || E && F || G

will naturally evaluate as:

     (A && B && C) || D || (E && F) || G
2021-07-16 19:18:41 +02:00
..
2020-12-16 15:49:53 +01:00
2021-04-01 18:03:37 +02:00
2021-04-08 20:11:58 +02:00
2021-05-14 09:36:37 +02:00