summaryrefslogtreecommitdiff
path: root/listeners.go
diff options
context:
space:
mode:
authorFrancis Lavoie <lavofr@gmail.com>2023-02-06 11:29:20 -0500
committerGitHub <noreply@github.com>2023-02-06 11:29:20 -0500
commite62b5fb58619364051551a7ee614fb9949cfe69a (patch)
treea08ff753dde04763b8a36a564b2b0504a86f4262 /listeners.go
parent94b8d56096b2581d6739b057655e7b895c8fd3bb (diff)
chore: Build with Go 1.20, keep minimum at 1.18 for now (#5353)
Diffstat (limited to 'listeners.go')
-rw-r--r--listeners.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/listeners.go b/listeners.go
index ea03ca4..5bf85a0 100644
--- a/listeners.go
+++ b/listeners.go
@@ -30,8 +30,8 @@ import (
"syscall"
"time"
- "github.com/lucas-clemente/quic-go"
- "github.com/lucas-clemente/quic-go/http3"
+ "github.com/quic-go/quic-go"
+ "github.com/quic-go/quic-go/http3"
"go.uber.org/zap"
)
@@ -462,7 +462,7 @@ func ListenQUIC(ln net.PacketConn, tlsConf *tls.Config, activeRequests *int64) (
// of closes) because closing the quic.EarlyListener doesn't actually close
// the underlying PacketConn, but we need to for unix sockets since we dup
// the file descriptor and thus need to close the original; track issue:
- // https://github.com/lucas-clemente/quic-go/issues/3560#issuecomment-1258959608
+ // https://github.com/quic-go/quic-go/issues/3560#issuecomment-1258959608
var unix *unixConn
if uc, ok := ln.(*unixConn); ok {
unix = uc