clash/common/sockopt/reuseaddr_other.go

13 lines
130 B
Go
Raw Normal View History

2021-08-18 05:26:23 +00:00
//go:build !linux
// +build !linux
package sockopt
import (
"net"
)
func UDPReuseaddr(c *net.UDPConn) (err error) {
return
}