mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-27 12:05:40 +00:00
14 lines
271 B
Go
14 lines
271 B
Go
|
// Copyright (c) Tailscale Inc & AUTHORS
|
||
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
|
||
|
//go:build !windows
|
||
|
|
||
|
package magicsock
|
||
|
|
||
|
import (
|
||
|
"tailscale.com/types/logger"
|
||
|
"tailscale.com/types/nettype"
|
||
|
)
|
||
|
|
||
|
func trySetUDPSocketOptions(pconn nettype.PacketConn, logf logger.Logf) {}
|