break: update repo url [ci skip]

uTLS is not yet bumped to the new version, so this commit breaks the dependencies relationship by getting rid of the local replace.
This commit is contained in:
Gaukas Wang 2023-08-03 18:58:52 -06:00
parent a72582e6aa
commit 95575f5fe7
No known key found for this signature in database
GPG key ID: 9E2F8986D76F8B5D
336 changed files with 928 additions and 1032 deletions

View file

@ -10,7 +10,7 @@ import (
"golang.org/x/sys/unix"
"github.com/quic-go/quic-go/internal/utils"
"github.com/refraction-networking/uquic/internal/utils"
)
func setDF(rawConn syscall.RawConn) (bool, error) {
@ -39,7 +39,7 @@ func setDF(rawConn syscall.RawConn) (bool, error) {
// On macOS, the syscall for setting DF bit for IPv4 fails on dual-stack listeners.
// Treat the connection as not having DF enabled, even though the DF bit will be set
// when used for IPv6.
// See https://github.com/quic-go/quic-go/issues/3793 for details.
// See https://github.com/refraction-networking/uquic/issues/3793 for details.
return false, nil
case errDFIPv4 != nil && errDFIPv6 != nil:
return false, errors.New("setting DF failed for both IPv4 and IPv6")