mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-05 21:07:41 +03:00
Add net control funcs
This commit is contained in:
parent
a784aec420
commit
ddfe73e899
7 changed files with 97 additions and 0 deletions
21
common/control/reuse_linux.go
Normal file
21
common/control/reuse_linux.go
Normal file
|
@ -0,0 +1,21 @@
|
|||
package control
|
||||
|
||||
import (
|
||||
"syscall"
|
||||
|
||||
"github.com/sagernet/sing/common"
|
||||
)
|
||||
|
||||
func ReuseAddr() Func {
|
||||
return func(network, address string, conn syscall.RawConn) error {
|
||||
var innerErr error
|
||||
err := conn.Control(func(fd uintptr) {
|
||||
const SO_REUSEPORT = 0xf
|
||||
innerErr = common.AnyError(
|
||||
syscall.SetsockoptInt(int(fd), syscall.SOL_SOCKET, syscall.SO_REUSEADDR, 1),
|
||||
syscall.SetsockoptInt(int(fd), syscall.SOL_SOCKET, SO_REUSEPORT, 1),
|
||||
)
|
||||
})
|
||||
return common.AnyError(innerErr, err)
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue