commit | ee847d45d02d7daa75aaee512fff8aa928972964 | [log] [tgz] |
---|---|---|
author | Christopher Faulet <cfaulet@haproxy.com> | Thu May 23 11:55:33 2019 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Tue May 28 07:42:33 2019 +0200 |
tree | 242497ddcbd8d0f96fdac4cae156f78bb855bbc1 | |
parent | 16af60e5406802d4cffa7b19fc57ed748014d688 [diff] |
MEDIUM: filters/htx: Filter body relatively to the first block The filters filtering HTX body, in the callback http_payload, must now loop on an HTX message starting from the first block position. The offset passed as parameter is relative to this position and not the head one. It is mandatory because once filtered, data are now forwarded using the function channel_htx_fwd_payload(). So the first block position is always updated.