mirror of
https://github.com/luscis/openlan.git
synced 2025-10-06 09:06:54 +08:00
16 lines
278 B
Go
Executable File
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")
|
|
}
|