5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-11-10 02:50:27 +00:00

use bbr congestion control on linux, note that we're not doing anything intelligent with the errors right now if setting it fails

This commit is contained in:
Arceliar 2019-10-05 10:47:15 -05:00
parent c600711a8d
commit 8e22d7137a
2 changed files with 29 additions and 1 deletions

View File

@ -0,0 +1,28 @@
// +build linux
package yggdrasil
import (
"syscall"
"golang.org/x/sys/unix"
)
// WARNING: This context is used both by net.Dialer and net.Listen in tcp.go
func (t *tcp) tcpContext(network, address string, c syscall.RawConn) error {
var control error
var bbr error
control = c.Control(func(fd uintptr) {
// sys/socket.h: #define SO_RECV_ANYIF 0x1104
bbr = unix.SetsockoptString(int(fd), unix.IPPROTO_TCP, unix.TCP_CONGESTION, "bbr")
})
switch {
case bbr != nil:
return bbr
default:
return control
}
}

View File

@ -1,4 +1,4 @@
// +build !darwin
// +build !darwin,!linux
package yggdrasil