clash/adapter/inbound/mptcp_go121.go
2023-08-09 17:09:03 +08:00

12 lines
190 B
Go

//go:build go1.21
package inbound
import "net"
const multipathTCPAvailable = true
func setMultiPathTCP(listenConfig *net.ListenConfig, open bool) {
listenConfig.SetMultipathTCP(open)
}