mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-11-19 09:51:01 +01:00
MINOR: http: add array of generic pointers in http_res_rules
This patch adds an array of generic pointers in the http_res_rules struct. It is used later by the "response capture" functions.
This commit is contained in:
parent
82bf70dff4
commit
cdb67cad01
@ -477,6 +477,9 @@ struct http_res_rule {
|
|||||||
struct list key; /* pattern to retrieve MAP or ACL key */
|
struct list key; /* pattern to retrieve MAP or ACL key */
|
||||||
struct list value; /* pattern to retrieve MAP value */
|
struct list value; /* pattern to retrieve MAP value */
|
||||||
} map;
|
} map;
|
||||||
|
struct {
|
||||||
|
void *p[4];
|
||||||
|
} act; /* generic pointers to be used by custom actions */
|
||||||
} arg; /* arguments used by some actions */
|
} arg; /* arguments used by some actions */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user