mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-09 18:43:14 +00:00
16 lines
255 B
Go
16 lines
255 B
Go
//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
|
|
}
|