mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 13:41:23 +08:00
27 lines
451 B
Go
27 lines
451 B
Go
|
package inbound
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"net"
|
||
|
|
||
|
"github.com/database64128/tfo-go/v2"
|
||
|
)
|
||
|
|
||
|
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)
|
||
|
}
|