mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-12-26 12:15:44 +08:00
13 lines
130 B
Go
13 lines
130 B
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
package sockopt
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
func UDPReuseaddr(c *net.UDPConn) (err error) {
|
|
return
|
|
}
|