commit | 04578dbf379aa53abfc79cd08b73ba6b98d37817 | [log] [tgz] |
---|---|---|
author | Gaetan Rivet <grive@u256.net> | Fri Feb 07 15:37:17 2020 +0100 |
committer | Christopher Faulet <cfaulet@haproxy.com> | Mon Apr 27 09:39:37 2020 +0200 |
tree | e7bc7ce34f45876bffd1393e2883b41134b204a0 | |
parent | 9dcb09fc9813a79029a335362378e4f728cbc103 [diff] |
MINOR: checks: Don't use a static tcp rule list head To allow reusing these blocks without consuming more memory, their list should be static and share-able accross uses. The head of the list will be shared as well. It is thus necessary to extract the head of the rule list from the proxy itself. Transform it into a pointer instead, that can be easily set to an external dynamically allocated head.