mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-06 21:37:38 +03:00
Minor fixes
This commit is contained in:
parent
6d16497f03
commit
6a0987c52a
5 changed files with 20 additions and 9 deletions
|
@ -3,7 +3,7 @@ package control
|
|||
import (
|
||||
"syscall"
|
||||
|
||||
"github.com/sagernet/sing/common"
|
||||
E "github.com/sagernet/sing/common/exceptions"
|
||||
)
|
||||
|
||||
func ReuseAddr() Func {
|
||||
|
@ -11,11 +11,11 @@ func ReuseAddr() Func {
|
|||
var innerErr error
|
||||
err := conn.Control(func(fd uintptr) {
|
||||
const SO_REUSEPORT = 0xf
|
||||
innerErr = common.AnyError(
|
||||
innerErr = E.Errors(
|
||||
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)
|
||||
return E.Errors(innerErr, err)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue