netty / netty-incubator-codec-http3

Experimental HTTP3 codec on top of QUIC
Apache License 2.0
167 stars 35 forks source link

QPACK: Allow stream cancellation even if the dynamic table was config… #267

Closed normanmaurer closed 9 months ago

normanmaurer commented 9 months ago

…ured with max capacity of 0

Motivation:

It is fine to send stream cancellations even if the dynamic table had a capacity of 0 and so was disabled. We didn't follow the spec here and did case a NPE if we received a stream cancellation after the table was configured with capacity of 0.

Modifications:

Result:

Fixes https://github.com/netty/netty-incubator-codec-http3/issues/261 and https://github.com/netty/netty-incubator-codec-http3/issues/252