]> git.ipfire.org Git - thirdparty/haproxy.git/commit
MINOR: htx: Use an array of char to store HTX blocks
authorChristopher Faulet <cfaulet@haproxy.com>
Wed, 12 Jun 2019 09:28:11 +0000 (11:28 +0200)
committerChristopher Faulet <cfaulet@haproxy.com>
Fri, 19 Jul 2019 07:18:27 +0000 (09:18 +0200)
commit2bf43f074669367515d438d0e399a5c826588bbf
treece537f0065865b2a0ce3bac0fac10b0024dcdc5f
parent192c6a23d48a0b4393885207221aebca82ff7609
MINOR: htx: Use an array of char to store HTX blocks

Instead of using a array of (struct block), it is more natural and intuitive to
use an array of char. Indeed, not only (struct block) are stored in this array,
but also their payload.
include/common/htx.h
src/htx.c