MINOR: action: add a new ACT_F_CFG_PARSER origin designation
In order to process samples from the config file we'll need rules as
well, and these rules will have to be marked as coming from the
config parser. This new origin is used for this.
diff --git a/include/haproxy/action-t.h b/include/haproxy/action-t.h
index 91042e0..7709777 100644
--- a/include/haproxy/action-t.h
+++ b/include/haproxy/action-t.h
@@ -34,6 +34,7 @@
ACT_F_HTTP_REQ, /* http-request */
ACT_F_HTTP_RES, /* http-response */
ACT_F_TCP_CHK, /* tcp-check. */
+ ACT_F_CFG_PARSER, /* config parser */
};
enum act_return {
diff --git a/src/vars.c b/src/vars.c
index 8690863..1077a79 100644
--- a/src/vars.c
+++ b/src/vars.c
@@ -653,6 +653,7 @@
case ACT_F_HTTP_REQ: dir = SMP_OPT_DIR_REQ; break;
case ACT_F_HTTP_RES: dir = SMP_OPT_DIR_RES; break;
case ACT_F_TCP_CHK: dir = SMP_OPT_DIR_REQ; break;
+ case ACT_F_CFG_PARSER: dir = SMP_OPT_DIR_REQ; break; /* not used anyway */
default:
send_log(px, LOG_ERR, "Vars: internal error while execute action store.");
if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))
@@ -777,6 +778,7 @@
case ACT_F_HTTP_REQ: flags = SMP_VAL_FE_HRQ_HDR; break;
case ACT_F_HTTP_RES: flags = SMP_VAL_BE_HRS_HDR; break;
case ACT_F_TCP_CHK: flags = SMP_VAL_BE_CHK_RUL; break;
+ case ACT_F_CFG_PARSER: flags = SMP_VAL_CFG_PARSER; break;
default:
memprintf(err,
"internal error, unexpected rule->from=%d, please report this bug!",