Clash.Meta/proxy/redir/tcp_windows.go

13 lines
201 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"
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) {
2018-08-12 04:00:34 +08:00
return nil, errors.New("Windows not support yet")
}