mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-16 00:14:31 +00:00
fd77e05f65
This patch copy the content of a variable in a sample. The function returns 0 if the variable is not found.
15 lines
570 B
C
15 lines
570 B
C
#ifndef _PROTO_VARS_H
|
|
#define _PROTO_VARS_H
|
|
|
|
#include <types/vars.h>
|
|
|
|
void vars_init(struct vars *vars, enum vars_scope scope);
|
|
void vars_prune(struct vars *vars, struct stream *strm);
|
|
void vars_prune_per_sess(struct vars *vars);
|
|
int vars_get_by_name(const char *name, size_t len, struct stream *strm, struct sample *smp);
|
|
void vars_set_by_name(const char *name, size_t len, struct stream *strm, struct sample *smp);
|
|
int vars_get_by_desc(const struct var_desc *var_desc, struct stream *strm, struct sample *smp);
|
|
int vars_check_arg(struct arg *arg, char **err);
|
|
|
|
#endif
|