mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
use the CRYPTO_BUFFER_EXCEEDED error for crypto stream overflows
This commit is contained in:
parent
92b898e811
commit
50e7d69865
3 changed files with 6 additions and 2 deletions
|
@ -55,7 +55,7 @@ var _ = Describe("Crypto Stream", func() {
|
|||
Offset: protocol.MaxCryptoStreamOffset - 5,
|
||||
Data: []byte("foobar"),
|
||||
})
|
||||
Expect(err).To(MatchError(fmt.Sprintf("received invalid offset %d on crypto stream, maximum allowed %d", protocol.MaxCryptoStreamOffset+1, protocol.MaxCryptoStreamOffset)))
|
||||
Expect(err).To(MatchError(fmt.Sprintf("CRYPTO_BUFFER_EXCEEDED: received invalid offset %d on crypto stream, maximum allowed %d", protocol.MaxCryptoStreamOffset+1, protocol.MaxCryptoStreamOffset)))
|
||||
})
|
||||
|
||||
It("handles messages split over multiple CRYPTO frames", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue