~~syscall.~~

This commit is contained in:
xqzr 2025-04-01 01:43:04 +08:00 committed by GitHub
parent 3b8343af37
commit b682470012
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -72,7 +72,7 @@ func applyOutboundSocketOptions(network string, address string, fd uintptr, conf
}
}
if config.TcpMaxSeg > 0 {
if err := syscall.SetsockoptInt(syscall.Handle(fd), syscall.IPPROTO_TCP, syscall.TCP_MAXSEG, int(config.TcpMaxSeg)); err != nil {
if err := syscall.SetsockoptInt(syscall.Handle(fd), syscall.IPPROTO_TCP, TCP_MAXSEG, int(config.TcpMaxSeg)); err != nil {
return errors.New("failed to set TCP_MAXSEG", err)
}
}
@ -96,7 +96,7 @@ func applyInboundSocketOptions(network string, fd uintptr, config *SocketConfig)
}
}
if config.TcpMaxSeg > 0 {
if err := syscall.SetsockoptInt(syscall.Handle(fd), syscall.IPPROTO_TCP, syscall.TCP_MAXSEG, int(config.TcpMaxSeg)); err != nil {
if err := syscall.SetsockoptInt(syscall.Handle(fd), syscall.IPPROTO_TCP, TCP_MAXSEG, int(config.TcpMaxSeg)); err != nil {
return errors.New("failed to set TCP_MAXSEG", err)
}
}