clash/listener/redir/tcp_other.go

15 lines
235 B
Go
Raw Normal View History

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