mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-04-04 06:13:35 +03:00
parent
ab5d7cf3d2
commit
3b8343af37
1 changed files with 11 additions and 0 deletions
|
@ -16,6 +16,7 @@ const (
|
|||
IP_MULTICAST_IF = 9
|
||||
IPV6_MULTICAST_IF = 9
|
||||
IPV6_V6ONLY = 27
|
||||
TCP_MAXSEG = 4
|
||||
)
|
||||
|
||||
func setTFO(fd syscall.Handle, tfo int) error {
|
||||
|
@ -70,6 +71,11 @@ func applyOutboundSocketOptions(network string, address string, fd uintptr, conf
|
|||
return errors.New("failed to unset SO_KEEPALIVE", err)
|
||||
}
|
||||
}
|
||||
if config.TcpMaxSeg > 0 {
|
||||
if err := syscall.SetsockoptInt(syscall.Handle(fd), syscall.IPPROTO_TCP, syscall.TCP_MAXSEG, int(config.TcpMaxSeg)); err != nil {
|
||||
return errors.New("failed to set TCP_MAXSEG", err)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return nil
|
||||
|
@ -89,6 +95,11 @@ func applyInboundSocketOptions(network string, fd uintptr, config *SocketConfig)
|
|||
return errors.New("failed to unset SO_KEEPALIVE", err)
|
||||
}
|
||||
}
|
||||
if config.TcpMaxSeg > 0 {
|
||||
if err := syscall.SetsockoptInt(syscall.Handle(fd), syscall.IPPROTO_TCP, syscall.TCP_MAXSEG, int(config.TcpMaxSeg)); err != nil {
|
||||
return errors.New("failed to set TCP_MAXSEG", err)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if config.V6Only {
|
||||
|
|
Loading…
Add table
Reference in a new issue