tatsuhiro-t / spdylay

The experimental SPDY protocol version 2, 3 and 3.1 implementation in C
http://tatsuhiro-t.github.io/spdylay/
MIT License
603 stars 102 forks source link

Add API to manually send WINDOW_UPDATE frame #22

Closed tatsuhiro-t closed 12 years ago

tatsuhiro-t commented 12 years ago

The current implementation automatically sends back WINDOW_UPDATE after certain amount of DATA are received. This works fine for endpoint like web-server or browser but it is not desirable for proxy, because it may want to send WINDOW_UPDATE after it relayed the data to the opposite endpoint. For this purpose, we need manual sending of WINDOW_UPDATE.

tatsuhiro-t commented 12 years ago

Fixed in b7429e7