remove parser logic for HTTP/3 DUPLICATE_PUSH frame (#3356)

This frame was removed in draft-25.
This commit is contained in:
Marten Seemann 2022-03-25 09:37:56 +01:00 committed by GitHub
parent 08af9fc2c1
commit 3a102406ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,8 +39,6 @@ func parseNextFrame(r io.Reader) (frame, error) {
fallthrough
case 0xd: // MAX_PUSH_ID
fallthrough
case 0xe: // DUPLICATE_PUSH
fallthrough
default:
// skip over unknown frames
if _, err := io.CopyN(ioutil.Discard, qr, int64(l)); err != nil {