commit | f5ea3a8c5818040420e27fd70d5bb8e867acdb4b | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Fri Jul 31 09:16:23 2020 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Fri Jul 31 09:30:12 2020 +0200 |
tree | 419eaf0617d18b7b63b1346b20879d8b016872e0 | |
parent | 2febb846a46a222f90d6cef47494677460d564df [diff] |
MINOR: mux-h1: do not try to receive on backend before sending a request There's no point trying to perform an recv() on a back connection if we have a stream before having sent a request, as it's expected to fail. It's likely that this may avoid some spurious subscribe() calls in some keep-alive cases (the close case was already addressed at the connection level by "MINOR: connection: avoid a useless recvfrom() on outgoing connections").