mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
update Go to 1.16, drop support for 1.14
This commit is contained in:
parent
dd9f8e4a2b
commit
62a906de3c
19 changed files with 43 additions and 726 deletions
11
stream.go
11
stream.go
|
@ -1,6 +1,8 @@
|
|||
package quic
|
||||
|
||||
import (
|
||||
"net"
|
||||
"os"
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
|
@ -10,6 +12,15 @@ import (
|
|||
"github.com/lucas-clemente/quic-go/internal/wire"
|
||||
)
|
||||
|
||||
type deadlineError struct{}
|
||||
|
||||
func (deadlineError) Error() string { return "deadline exceeded" }
|
||||
func (deadlineError) Temporary() bool { return true }
|
||||
func (deadlineError) Timeout() bool { return true }
|
||||
func (deadlineError) Unwrap() error { return os.ErrDeadlineExceeded }
|
||||
|
||||
var errDeadline net.Error = &deadlineError{}
|
||||
|
||||
// The streamSender is notified by the stream about various events.
|
||||
type streamSender interface {
|
||||
queueControlFrame(wire.Frame)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue