Commit ab8c1f5b authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Typo

parent 2986c1f0
......@@ -668,7 +668,7 @@ h2_rxframe(struct worker *wrk, struct h2_sess *h2)
h2->rxf_type = h2->htc->rxbuf_b[3];
h2->rxf_flags = h2->htc->rxbuf_b[4];
h2->rxf_stream = vbe32dec(h2->htc->rxbuf_b + 5);
h2->rxf_stream &= ~(1LU<<31); // rfc7450,l,690,692
h2->rxf_stream &= ~(1LU<<31); // rfc7540,l,690,692
h2->rxf_data = (void*)(h2->htc->rxbuf_b + 9);
/* XXX: later full DATA will not be rx'ed yet. */
HTC_RxPipeline(h2->htc, h2->htc->rxbuf_b + h2->rxf_len + 9);
......
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