commit | 88bdba31fa697f879941dc8acfc0e76c76800511 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Mon May 13 18:17:53 2019 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Mon May 13 19:14:52 2019 +0200 |
tree | bc5b3e1177ebc99a5e2ccf31d9b263017162c8cb | |
parent | 2c249ebc7543512a4539a48bb75676dca47bf5fe [diff] |
CLEANUP: mux-h2: simply use h2s->flags instead of ret in h2_deferred_shut() This one used to rely on the combined return statuses of the shutr/w functions but now that we have the H2_SF_WANT_SHUT{R,W} flags we don't need this anymore if we properly remove these flags after their operations succeed. This is what this patch does.