1
0
mirror of https://github.com/MetaCubeX/mihomo.git synced 2025-09-20 20:45:58 +08:00
Files
mihomo/common/sockopt/reuseaddr_other.go
2021-08-18 13:26:23 +08:00

13 lines
130 B
Go

//go:build !linux
// +build !linux
package sockopt
import (
"net"
)
func UDPReuseaddr(c *net.UDPConn) (err error) {
return
}