clash/common/sockopt/reuseaddr_other.go
2022-03-16 12:10:13 +08:00

12 lines
113 B
Go

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