update Go to 1.16, drop support for 1.14

This commit is contained in:
Marten Seemann 2021-02-17 12:08:48 +08:00
parent dd9f8e4a2b
commit 62a906de3c
19 changed files with 43 additions and 726 deletions

View file

@ -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)