commit | c234ae38f859ee0b96455b207bb7031cf5fa036d | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Mon May 13 17:56:11 2019 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Mon May 13 19:14:52 2019 +0200 |
tree | 1ff0bd9d86630c3b3154ef19c4f61817d0ddcb50 | |
parent | 42ccb5ac45058a4ad8a74794414e76ec371d50c0 [diff] |
CLEANUP: mux-h2: use LIST_ADDED() instead of LIST_ISEMPTY() where relevant Lots of places were using LIST_ISEMPTY() to detect if a stream belongs to one of the send lists or to detect if a connection was already waiting for a buffer or attached to an idle list. Since these ones are not list heads but list elements, let's use LIST_ADDED() instead.