Improve control

This commit is contained in:
世界 2022-07-17 14:30:57 +08:00
parent 6795d518e1
commit 6910a8c5ce
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
13 changed files with 60 additions and 68 deletions

View file

@ -0,0 +1,22 @@
//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
package control
import (
"syscall"
E "github.com/sagernet/sing/common/exceptions"
"golang.org/x/sys/unix"
)
func ReuseAddr() Func {
return func(network, address string, conn syscall.RawConn) error {
return Control(conn, func(fd uintptr) error {
return E.Errors(
unix.SetsockoptInt(int(fd), unix.SOL_SOCKET, unix.SO_REUSEADDR, 1),
unix.SetsockoptInt(int(fd), unix.SOL_SOCKET, unix.SO_REUSEPORT, 1),
)
})
}
}