commit | e008402972e58ab99506bbbbf4d540a21f5be465 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Sun Feb 12 09:26:48 2023 +0100 |
committer | Willy Tarreau <w@1wt.eu> | Sun Feb 12 09:26:48 2023 +0100 |
tree | fae6d27023888e5b48acb75120f1bd54653dcc8b | |
parent | 91376d61347dc7aeb4ba7afcd06fb38fa9ef848f [diff] |
DOC: proxy-protocol: fix wrong byte in provided example There was a mistake in the example of proxy-proto frame provided, it cannot end with 0x02 but only 0x20 or 0x21 since the version is in the upper 4 bits and the lower ones are 0 for LOCAL or 1 for PROXY, hence the example should be: \x0D\x0A\x0D\x0A\x00\x0D\x0A\x51\x55\x49\x54\x0A\x20 Thanks to Bram Grit for reporting this mistake.