netty5/codec-http2/src
Scott Mitchell 765e944d4d HTTP/2 limit streams in all states
Motivation:
SETTINGS_MAX_CONCURRENT_STREAMS does not apply to idle streams and thus we do not apply any explicit limitations on how many idle streams can be created. This may allow a peer to consume an undesirable amount of resources.

Modifications:
- Each Endpoint should enforce a limit for streams in a any state. By default this limit will be the same as SETTINGS_MAX_CONCURRENT_STREAMS but can be overridden if necessary.

Result:
There is now a limit to how many IDLE streams can be created.
2016-08-11 09:01:37 -07:00
..
main/java/io/netty/handler/codec/http2 HTTP/2 limit streams in all states 2016-08-11 09:01:37 -07:00
test HTTP/2 limit streams in all states 2016-08-11 09:01:37 -07:00