molnarg / node-http2

An HTTP/2 client and server implementation for node.js
MIT License
1.79k stars 187 forks source link

Allow receipt of WINDOW_UPDATE on closed streams #172

Closed tbetbetbe closed 8 years ago

tbetbetbe commented 8 years ago

https://httpwg.github.io/specs/rfc7540.html#StreamStates

'WINDOW_UPDATE or RST_STREAM frames can be received in this state for a short period after a DATA or HEADERS frame containing an END_STREAM flag is sent.'

The current logic does not allow this work in all valid cases,

nwgh commented 8 years ago

Thanks!