mirror of
https://github.com/MetaCubeX/Clash.Meta.git
synced 2025-04-12 13:30:54 +00:00
9 lines
192 B
Go
9 lines
192 B
Go
package sockopt
|
|
|
|
import (
|
|
"golang.org/x/sys/windows"
|
|
)
|
|
|
|
func reuseControl(fd uintptr) error {
|
|
return windows.SetsockoptInt(windows.Handle(fd), windows.SOL_SOCKET, windows.SO_REUSEADDR, 1)
|
|
}
|