mirror of
https://github.com/curl/curl.git
synced 2025-01-12 13:55:11 +08:00
fe9f68fa61
In an effort to increase the readability of the "--help all" output on narrow (80 column) terminals. Co-authored-by: Jay Satiro Closes #13169
34 lines
1.1 KiB
Markdown
34 lines
1.1 KiB
Markdown
---
|
|
c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
SPDX-License-Identifier: curl
|
|
Long: haproxy-clientip
|
|
Arg: <ip>
|
|
Help: Set address in HAProxy PROXY
|
|
Protocols: HTTP
|
|
Added: 8.2.0
|
|
Category: http proxy
|
|
Multi: single
|
|
See-also:
|
|
- proxy
|
|
Example:
|
|
- --haproxy-clientip $IP
|
|
---
|
|
|
|
# `--haproxy-clientip`
|
|
|
|
Sets a client IP in HAProxy PROXY protocol v1 header at the beginning of the
|
|
connection.
|
|
|
|
For valid requests, IPv4 addresses must be indicated as a series of exactly
|
|
4 integers in the range [0..255] inclusive written in decimal representation
|
|
separated by exactly one dot between each other. Heading zeroes are not
|
|
permitted in front of numbers in order to avoid any possible confusion
|
|
with octal numbers. IPv6 addresses must be indicated as series of 4 hexadecimal
|
|
digits (upper or lower case) delimited by colons between each other, with the
|
|
acceptance of one double colon sequence to replace the largest acceptable range
|
|
of consecutive zeroes. The total number of decoded bits must exactly be 128.
|
|
|
|
Otherwise, any string can be accepted for the client IP and get sent.
|
|
|
|
It replaces --haproxy-protocol if used, it is not necessary to specify both flags.
|