clash/adapter/inbound/listen.go

27 lines
443 B
Go
Raw Normal View History

2022-11-16 02:43:16 +00:00
package inbound
import (
"context"
"net"
2023-02-08 05:10:26 +00:00
"github.com/sagernet/tfo-go"
2022-11-16 02:43:16 +00:00
)
var (
lc = tfo.ListenConfig{
DisableTFO: true,
}
)
func SetTfo(open bool) {
lc.DisableTFO = !open
}
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)
}