mptcp_go121.go 190 B

1234567891011
  1. //go:build go1.21
  2. package inbound
  3. import "net"
  4. const multipathTCPAvailable = true
  5. func setMultiPathTCP(listenConfig *net.ListenConfig, open bool) {
  6. listenConfig.SetMultipathTCP(open)
  7. }