Clash.Meta/proxy/redir/tcp_windows.go

13 lines
197 B
Go
Raw Normal View History

2018-08-12 04:00:34 +08:00
package redir
import (
"errors"
2018-08-12 11:06:17 +08:00
"net"
"github.com/riobard/go-shadowsocks2/socks"
2018-08-12 04:00:34 +08:00
)
func parserPacket(conn net.Conn) (socks.Addr, error) {
return nil, errors.New("Windows not support yet")
}