mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-05 11:24:00 +00:00
11 lines
113 B
Go
11 lines
113 B
Go
//go:build !linux
|
|
|
|
package sockopt
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
func UDPReuseaddr(c *net.UDPConn) (err error) {
|
|
return
|
|
}
|