diff options
author | Christian Breunig <christian@breunig.cc> | 2024-04-23 17:53:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-23 17:53:56 +0200 |
commit | 50dd92275a20aa940984730535a53952f6bc7b54 (patch) | |
tree | b5bbf4acb5a91436290de43e13756e95f2906547 /interface-definitions/include/haproxy/tcp-request.xml.i | |
parent | 48461a9693568b1ca7ca4422130504cceed4ea28 (diff) | |
parent | ff1636643bcd8b11b8538f998e7ba1188e9d3964 (diff) | |
download | vyos-1x-50dd92275a20aa940984730535a53952f6bc7b54.tar.gz vyos-1x-50dd92275a20aa940984730535a53952f6bc7b54.zip |
Merge pull request #3352 from vyos/mergify/bp/sagitta/pr-3342
T6226: add HAPROXY tcp-request related block to load-balancing reverse proxy config (backport #3342)
Diffstat (limited to 'interface-definitions/include/haproxy/tcp-request.xml.i')
-rw-r--r-- | interface-definitions/include/haproxy/tcp-request.xml.i | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/interface-definitions/include/haproxy/tcp-request.xml.i b/interface-definitions/include/haproxy/tcp-request.xml.i new file mode 100644 index 000000000..3d60bd8ad --- /dev/null +++ b/interface-definitions/include/haproxy/tcp-request.xml.i @@ -0,0 +1,22 @@ +<!-- include start from haproxy/tcp-request.xml.i --> +<node name="tcp-request"> + <properties> + <help>TCP request directive</help> + </properties> + <children> + <leafNode name="inspect-delay"> + <properties> + <help>Set the maximum allowed time to wait for data during content inspection</help> + <valueHelp> + <format>u32:1-65535</format> + <description>The timeout value specified in milliseconds</description> + </valueHelp> + <constraint> + <validator name="numeric" argument="--range 1-65535"/> + </constraint> + <constraintErrorMessage>The timeout value must be in range 1 to 65535 milliseconds</constraintErrorMessage> + </properties> + </leafNode> + </children> +</node> +<!-- include end --> |