From: Thierry FOURNIER Date: Tue, 26 Nov 2013 08:54:50 +0000 (+0100) Subject: MINOR: sample: add a private field to the struct sample_conv X-Git-Tag: v1.5-dev20~180 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fdbf4842b6d371773e8868165625ee617ae3ff18;p=thirdparty%2Fhaproxy.git MINOR: sample: add a private field to the struct sample_conv These flags will be used for maps, and possibly later to pass some extra information to other converters if needed. --- diff --git a/include/types/sample.h b/include/types/sample.h index a2d2296c8b..46bc75b6af 100644 --- a/include/types/sample.h +++ b/include/types/sample.h @@ -260,6 +260,7 @@ struct sample_conv { char **err_msg); /* argument validation function */ unsigned int in_type; /* expected input sample type */ unsigned int out_type; /* output sample type */ + unsigned int private; /* private values. only used by maps */ }; /* sample conversion expression */