mirror of
https://github.com/haproxy/haproxy.git
synced 2026-05-28 04:12:17 -04:00
MINOR: stream: Don't reset sov value with HTX messages
This commit is contained in:
parent
ef77922776
commit
ed28da534a
1 changed files with 2 additions and 2 deletions
|
|
@ -2192,7 +2192,7 @@ redo:
|
|||
* we simply reset msg->sov so that HTTP rewinding points to the
|
||||
* headers.
|
||||
*/
|
||||
if (s->txn)
|
||||
if (IS_HTX_STRM(s) && s->txn)
|
||||
s->txn->req.sov = s->txn->req.eoh + s->txn->req.eol - co_data(req);
|
||||
}
|
||||
|
||||
|
|
@ -2353,7 +2353,7 @@ redo:
|
|||
* we simply reset msg->sov so that HTTP rewinding points to the
|
||||
* headers.
|
||||
*/
|
||||
if (s->txn)
|
||||
if (IS_HTX_STRM(s) && s->txn)
|
||||
s->txn->rsp.sov = s->txn->rsp.eoh + s->txn->rsp.eol - co_data(res);
|
||||
|
||||
/* if we have no analyser anymore in any direction and have a
|
||||
|
|
|
|||
Loading…
Reference in a new issue