mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-09-24 07:11:20 +02:00
Adding new http converter: rfc7239_n2nn. Takes a string representing 7239 forwarded header node (extracted from either 'for' or 'by' 7239 header fields) as input and translates it to either ipv4 address, ipv6 address or str ('_' prefixed if obfuscated or "unknown" if unknown), according to 7239RFC. Example: # extract 'for' field from forwarded header, extract nodename from # resulting node identifier and store the result in req.fnn http-request set-var(req.fnn) req.hdr(forwarded),rfc7239_field(for),rfc7239_n2nn #input: "for=\"127.0.0.1:9999\"" # output: 127.0.0.1 #input: "for=\"_name:_port\"" # output: "_name" Depends on: - "MINOR: http_ext: introduce http ext converters"