Clash.Meta/adapter/inbound/listen.go

31 lines
515 B
Go
Raw Normal View History

2022-11-16 10:43:16 +08:00
package inbound
import (
"context"
"net"
2024-02-28 11:14:10 +08:00
"github.com/metacubex/tfo-go"
2022-11-16 10:43:16 +08:00
)
var (
lc = tfo.ListenConfig{
DisableTFO: true,
}
)
func SetTfo(open bool) {
lc.DisableTFO = !open
}
func SetMPTCP(open bool) {
setMultiPathTCP(&lc.ListenConfig, open)
}
2022-11-16 10:43:16 +08:00
func ListenContext(ctx context.Context, network, address string) (net.Listener, error) {
return lc.Listen(ctx, network, address)
}
func Listen(network, address string) (net.Listener, error) {
return ListenContext(context.Background(), network, address)
}