mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
use the os.ErrDeadlineExceeded for stream deadline errors on Go 1.15
This commit is contained in:
parent
7c204d4d9e
commit
fefdea3420
4 changed files with 41 additions and 9 deletions
|
@ -1,7 +1,6 @@
|
|||
package quic
|
||||
|
||||
import (
|
||||
"net"
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
|
@ -74,14 +73,6 @@ type stream struct {
|
|||
|
||||
var _ Stream = &stream{}
|
||||
|
||||
type deadlineError struct{}
|
||||
|
||||
func (deadlineError) Error() string { return "deadline exceeded" }
|
||||
func (deadlineError) Temporary() bool { return true }
|
||||
func (deadlineError) Timeout() bool { return true }
|
||||
|
||||
var errDeadline net.Error = &deadlineError{}
|
||||
|
||||
type streamCanceledError struct {
|
||||
error
|
||||
errorCode protocol.ApplicationErrorCode
|
||||
|
|
11
stream_deadline_error.go
Normal file
11
stream_deadline_error.go
Normal file
|
@ -0,0 +1,11 @@
|
|||
package quic
|
||||
|
||||
import "net"
|
||||
|
||||
type deadlineError struct{}
|
||||
|
||||
func (deadlineError) Error() string { return "deadline exceeded" }
|
||||
func (deadlineError) Temporary() bool { return true }
|
||||
func (deadlineError) Timeout() bool { return true }
|
||||
|
||||
var errDeadline net.Error = &deadlineError{}
|
9
stream_deadline_error_go115.go
Normal file
9
stream_deadline_error_go115.go
Normal file
|
@ -0,0 +1,9 @@
|
|||
// +build go1.15
|
||||
|
||||
package quic
|
||||
|
||||
import (
|
||||
"os"
|
||||
)
|
||||
|
||||
func (deadlineError) Unwrap() error { return os.ErrDeadlineExceeded }
|
21
stream_deadline_error_test.go
Normal file
21
stream_deadline_error_test.go
Normal file
|
@ -0,0 +1,21 @@
|
|||
// +build go1.15
|
||||
|
||||
package quic
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"os"
|
||||
|
||||
. "github.com/onsi/ginkgo"
|
||||
. "github.com/onsi/gomega"
|
||||
)
|
||||
|
||||
var _ = Describe("Deadline Error", func() {
|
||||
It("is a net.Error that wraps os.ErrDeadlineError", func() {
|
||||
err := deadlineError{}
|
||||
Expect(err.Temporary()).To(BeTrue())
|
||||
Expect(err.Timeout()).To(BeTrue())
|
||||
Expect(errors.Is(err, os.ErrDeadlineExceeded)).To(BeTrue())
|
||||
Expect(errors.Unwrap(err)).To(Equal(os.ErrDeadlineExceeded))
|
||||
})
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue