mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
drop support for Go 1.15
This commit is contained in:
parent
761c0fabd6
commit
68e468a3bc
30 changed files with 93 additions and 209 deletions
|
@ -1,6 +1,7 @@
|
|||
package qerr
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"net"
|
||||
|
||||
"github.com/lucas-clemente/quic-go/internal/protocol"
|
||||
|
@ -114,4 +115,13 @@ var _ = Describe("QUIC Errors", func() {
|
|||
Expect(nerr.Temporary()).To(BeTrue())
|
||||
})
|
||||
})
|
||||
|
||||
It("says that errors are net.ErrClosed errors", func() {
|
||||
Expect(errors.Is(&TransportError{}, net.ErrClosed)).To(BeTrue())
|
||||
Expect(errors.Is(&ApplicationError{}, net.ErrClosed)).To(BeTrue())
|
||||
Expect(errors.Is(&IdleTimeoutError{}, net.ErrClosed)).To(BeTrue())
|
||||
Expect(errors.Is(&HandshakeTimeoutError{}, net.ErrClosed)).To(BeTrue())
|
||||
Expect(errors.Is(&StatelessResetError{}, net.ErrClosed)).To(BeTrue())
|
||||
Expect(errors.Is(&VersionNegotiationError{}, net.ErrClosed)).To(BeTrue())
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue