clash/common/sockopt/reuseaddr_other.go

11 lines
112 B
Go

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