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
2018-08-12 04:00:34 +08:00

10 lines
145 B
Go

package redir
import (
"errors"
)
func parserPacket(conn net.Conn) (socks.Addr, error) {
return nil, errors.New("Windows not support yet")
}