mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 05:31:18 +08:00
12 lines
190 B
Go
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)
|
||
|
}
|