use the correct error code for crypto stream errors

This commit is contained in:
Marten Seemann 2020-05-14 17:12:07 +07:00
parent 1cd1c3f54d
commit df06ee5e37
2 changed files with 2 additions and 3 deletions

View file

@ -1,7 +1,6 @@
package quic
import (
"errors"
"fmt"
"io"
@ -81,7 +80,7 @@ func (s *cryptoStreamImpl) GetCryptoData() []byte {
func (s *cryptoStreamImpl) Finish() error {
if s.queue.HasMoreData() {
return errors.New("encryption level changed, but crypto stream has more data to read")
return qerr.NewError(qerr.ProtocolViolation, "encryption level changed, but crypto stream has more data to read")
}
s.finished = true
return nil

View file

@ -97,7 +97,7 @@ var _ = Describe("Crypto Stream", func() {
Offset: 10,
})).To(Succeed())
err := str.Finish()
Expect(err).To(MatchError("encryption level changed, but crypto stream has more data to read"))
Expect(err).To(MatchError("PROTOCOL_VIOLATION: encryption level changed, but crypto stream has more data to read"))
})
It("works with reordered data", func() {