Clash.Meta/proxy/redir/tcp_other.go

15 lines
235 B
Go
Raw Normal View History

2021-04-26 20:42:17 +08:00
// +build !darwin,!linux,!freebsd
2018-08-12 04:00:34 +08:00
package redir
import (
"errors"
2018-08-12 11:06:17 +08:00
"net"
2019-04-25 13:48:47 +08:00
"github.com/Dreamacro/clash/component/socks5"
2018-08-12 04:00:34 +08:00
)
2019-04-25 13:48:47 +08:00
func parserPacket(conn net.Conn) (socks5.Addr, error) {
2021-04-26 20:42:17 +08:00
return nil, errors.New("system not support yet")
2018-08-12 04:00:34 +08:00
}