Update dependencies
This commit is contained in:
15
vendor/tailscale.com/net/tcpinfo/tcpinfo_other.go
generated
vendored
Normal file
15
vendor/tailscale.com/net/tcpinfo/tcpinfo_other.go
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
// Copyright (c) Tailscale Inc & AUTHORS
|
||||
// SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
//go:build !linux && !darwin
|
||||
|
||||
package tcpinfo
|
||||
|
||||
import (
|
||||
"net"
|
||||
"time"
|
||||
)
|
||||
|
||||
func rttImpl(conn *net.TCPConn) (time.Duration, error) {
|
||||
return 0, ErrUnimplemented
|
||||
}
|
||||
Reference in New Issue
Block a user