mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-04-03 22:03:36 +03:00
comment
This commit is contained in:
parent
971a8dadfc
commit
45b098ef23
2 changed files with 4 additions and 1 deletions
|
@ -36,6 +36,8 @@ func bindAddr(fd uintptr, ip []byte, port uint32) error {
|
|||
return syscall.Bind(int(fd), sockaddr)
|
||||
}
|
||||
|
||||
// applyOutboundSocketOptions applies socket options for outbound connection.
|
||||
// note that unlike other part of Xray, this function needs network with speified network stack(tcp4/tcp6/udp4/udp6)
|
||||
func applyOutboundSocketOptions(network string, address string, fd uintptr, config *SocketConfig) error {
|
||||
if config.Mark != 0 {
|
||||
if err := syscall.SetsockoptInt(int(fd), syscall.SOL_SOCKET, syscall.SO_MARK, int(config.Mark)); err != nil {
|
||||
|
@ -149,6 +151,8 @@ func applyOutboundSocketOptions(network string, address string, fd uintptr, conf
|
|||
return nil
|
||||
}
|
||||
|
||||
// applyInboundSocketOptions applies socket options for inbound listener.
|
||||
// note that unlike other part of Xray, this function needs network with speified network stack(tcp4/tcp6/udp4/udp6)
|
||||
func applyInboundSocketOptions(network string, fd uintptr, config *SocketConfig) error {
|
||||
if config.Mark != 0 {
|
||||
if err := syscall.SetsockoptInt(int(fd), syscall.SOL_SOCKET, syscall.SO_MARK, int(config.Mark)); err != nil {
|
||||
|
|
|
@ -73,7 +73,6 @@ func (d *DefaultSystemDialer) Dial(ctx context.Context, src net.Address, dest ne
|
|||
return nil, err
|
||||
}
|
||||
sys.Control(func(fd uintptr) {
|
||||
// applyOutboundSocketOptions needs to netwotk with specified network stack(udp4/udp6)
|
||||
var network string
|
||||
if destAddr.IP.To4() != nil {
|
||||
network = "udp4"
|
||||
|
|
Loading…
Add table
Reference in a new issue