change the type byte of the IETF ACK frame from 0x0e to 0x0d

This commit is contained in:
Marten Seemann
2018-04-22 18:05:43 +09:00
parent c1d8c8940e
commit cd359ec5e0
4 changed files with 25 additions and 10 deletions

View File

@@ -85,7 +85,7 @@ func parseIETFFrame(r *bytes.Reader, typeByte byte, v protocol.VersionNumber) (F
if err != nil {
err = qerr.Error(qerr.InvalidFrameData, err.Error())
}
case 0xe:
case 0xd:
frame, err = parseAckFrame(r, v)
if err != nil {
err = qerr.Error(qerr.InvalidAckData, err.Error())