Commit 4042ed23 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Use the right h2req for sending window updates

parent 2adcd88f
...@@ -585,14 +585,14 @@ h2_rx_data(struct worker *wrk, struct h2_sess *h2, struct h2_req *r2) ...@@ -585,14 +585,14 @@ h2_rx_data(struct worker *wrk, struct h2_sess *h2, struct h2_req *r2)
Lck_Unlock(&h2->sess->mtx); Lck_Unlock(&h2->sess->mtx);
if (w1 || w2) { if (w1 || w2) {
vbe32enc(buf, wi); vbe32enc(buf, wi);
H2_Send_Get(wrk, h2, r2); H2_Send_Get(wrk, h2, h2->req0);
if (w1) if (w1)
H2_Send_Frame(wrk, h2, H2_F_WINDOW_UPDATE, 0, H2_Send_Frame(wrk, h2, H2_F_WINDOW_UPDATE, 0,
4, 0, buf); 4, 0, buf);
if (w2) if (w2)
H2_Send_Frame(wrk, h2, H2_F_WINDOW_UPDATE, 0, H2_Send_Frame(wrk, h2, H2_F_WINDOW_UPDATE, 0,
4, r2->stream, buf); 4, r2->stream, buf);
H2_Send_Rel(h2, r2); H2_Send_Rel(h2, h2->req0);
} }
return (0); return (0);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment