mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 04:47:40 +03:00
Improve control
This commit is contained in:
parent
6795d518e1
commit
6910a8c5ce
13 changed files with 60 additions and 68 deletions
22
common/control/reuse_unix.go
Normal file
22
common/control/reuse_unix.go
Normal 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),
|
||||
)
|
||||
})
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue