No functional changes. This follows the change from
ad137a80919f.
c->sent += sent;
- cl = ngx_handle_sent_chain(in, sent);
+ in = ngx_handle_sent_chain(in, sent);
if (eintr) {
continue;
if (send - prev_send != sent) {
wev->ready = 0;
- return cl;
+ return in;
}
- if (send >= limit || cl == NULL) {
- return cl;
+ if (send >= limit || in == NULL) {
+ return in;
}
-
- in = cl;
}
}
c->sent += sent;
- cl = ngx_handle_sent_chain(in, sent);
+ in = ngx_handle_sent_chain(in, sent);
if (send - prev_send != sent) {
wev->ready = 0;
- return cl;
+ return in;
}
- if (send >= limit || cl == NULL) {
- return cl;
+ if (send >= limit || in == NULL) {
+ return in;
}
-
- in = cl;
}
}
c->sent += sent;
- cl = ngx_handle_sent_chain(in, sent);
+ in = ngx_handle_sent_chain(in, sent);
- if (cl) {
+ if (in) {
wev->ready = 0;
} else {
wev->ready = 1;
}
- return cl;
+ return in;
}