MINOR: mux-h2: remove useless test on stream ID vs last in wake function
authorWilly Tarreau <w@1wt.eu>
Tue, 7 May 2019 12:44:41 +0000 (14:44 +0200)
committerWilly Tarreau <w@1wt.eu>
Tue, 14 May 2019 13:47:57 +0000 (15:47 +0200)
commitc3b1183f57250f8e969b22dc4718c63e601d685f
treeea29d6cf16b2ca9bfc2972d79e27db30385f299c
parent920fc8bbe4240cb36653a1a7f6e459e7668c1643
MINOR: mux-h2: remove useless test on stream ID vs last in wake function

h2_wake_some_streams() first looks up streams whose IDs are greater than
or equal to last+1, then checks if the id is lower than or equal to last,
which by definition will never match. Let's remove this confusing leftover
from ancient code.
src/mux_h2.c