[BUG] buffer_forward() would not correctly consider data already scheduled

The computations in buffer_forward() were only valid if buffer_forward()
was used on a buffer which had no more data scheduled for forwarding.
This is always the case right now so this bug is not yet triggered but
it will soon be. Now we correctly discount the bytes to be forwarded
from the data already present in the buffer.
(cherry picked from commit 91aa577b1f0483c50bfa72b3198cf1a1ff835163)
This commit is contained in:
Willy Tarreau 2009-09-15 20:32:30 +02:00
parent 29b366dcdd
commit db95cd94c0

View File

@ -99,12 +99,13 @@ static inline void buffer_forward(struct buffer *buf, unsigned int bytes)
{
unsigned int data_left;
buf->to_forward += bytes;
data_left = buf->l - buf->send_max;
if (data_left > buf->to_forward)
data_left = buf->to_forward;
if (data_left >= bytes) {
buf->send_max += bytes;
return;
}
buf->to_forward -= data_left;
buf->to_forward += bytes - data_left;
buf->send_max += data_left;
}