From ee3f0b149ca39537dc3337392139b7e787c219c1 Mon Sep 17 00:00:00 2001 From: Emeric Brun Date: Thu, 1 Jul 2021 18:34:48 +0200 Subject: [PATCH] DOC: stick-table: add missing documentation about gpt0 stored type The store type 'gpt0' was present in code but was not documented. The patch fix this and should be backported since 'gpt0' is supported. [wt: ~1.6-dev4 hence all stable] (cherry picked from commit 1a6b7254de849765bef34f7b65b92ff63bcea1ee) Signed-off-by: Willy Tarreau (cherry picked from commit a5d1531dc047f7aa3e672411b63e0aca708b109d) Signed-off-by: Willy Tarreau --- doc/configuration.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/configuration.txt b/doc/configuration.txt index 4c29293..64e9cef 100644 --- a/doc/configuration.txt +++ b/doc/configuration.txt @@ -10730,6 +10730,11 @@ stick-table type {ip | integer | string [len ] | binary [len ]} incremented. Most of the time it will be used to measure the frequency of occurrence of certain events (e.g. requests to a specific URL). + - gpt0 : first General Purpose Tag. It is a positive 32-bit integer + integer which may be used for anything. Most of the time it will be used + to put a special tag on some entries, for instance to note that a + specific behavior was detected and must be known for future matches + - conn_cnt : Connection Count. It is a positive 32-bit integer which counts the absolute number of connections received from clients which matched this entry. It does not mean the connections were accepted, just that -- 1.7.10.4