mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 21:27:35 +03:00
don't send STOP_WAITING frames (for IETF QUIC)
This commit is contained in:
parent
93e99e239c
commit
2c83c9e3f0
7 changed files with 151 additions and 67 deletions
|
@ -106,13 +106,7 @@ func (u *packetUnpacker) parseIETFFrame(r *bytes.Reader, typeByte byte, hdr *wir
|
|||
if err != nil {
|
||||
err = qerr.Error(qerr.InvalidWindowUpdateData, err.Error())
|
||||
}
|
||||
case 0x6:
|
||||
// TODO(#964): remove STOP_WAITING frames
|
||||
// TODO(#878): implement the MAX_STREAM_ID frame
|
||||
frame, err = wire.ParseStopWaitingFrame(r, hdr.PacketNumber, hdr.PacketNumberLen, u.version)
|
||||
if err != nil {
|
||||
err = qerr.Error(qerr.InvalidStopWaitingData, err.Error())
|
||||
}
|
||||
// TODO(#878): implement the MAX_STREAM_ID frame
|
||||
case 0x7:
|
||||
frame, err = wire.ParsePingFrame(r, u.version)
|
||||
case 0x8:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue