Files
openlan/pkg/proxy/ss/tcp_other.go
2022-07-29 23:38:54 +08:00

16 lines
278 B
Go
Executable File

// +build !linux,!darwin
package ss
import (
"net"
)
func redirLocal(addr, server string, shadow func(net.Conn) net.Conn) {
logf("TCP redirect not supported")
}
func redir6Local(addr, server string, shadow func(net.Conn) net.Conn) {
logf("TCP6 redirect not supported")
}