sing-box/inbound/default_tcp_nongo1.20.go

16 lines
255 B
Go
Raw Permalink Normal View History

2023-08-16 09:47:24 +00:00
//go:build !go1.20
package inbound
import (
"context"
"net"
"os"
)
const go120Available = false
func listenTFO(listenConfig net.ListenConfig, ctx context.Context, network string, address string) (net.Listener, error) {
return nil, os.ErrInvalid
}