This repository has been archived on 2024-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
Clash.Meta/proxy/redir/tcp_windows.go
2019-04-25 13:48:47 +08:00

13 lines
201 B
Go

package redir
import (
"errors"
"net"
"github.com/Dreamacro/clash/component/socks5"
)
func parserPacket(conn net.Conn) (socks5.Addr, error) {
return nil, errors.New("Windows not support yet")
}