github.com/sagernet/sing-box@v1.9.0-rc.20/inbound/default_tcp_go1.21.go (about)

     1  //go:build go1.21
     2  
     3  package inbound
     4  
     5  import "net"
     6  
     7  const go121Available = true
     8  
     9  func setMultiPathTCP(listenConfig *net.ListenConfig) {
    10  	listenConfig.SetMultipathTCP(true)
    11  }