clash/proxy/redir/tcp_windows.go

13 lines
201 B
Go
Raw Normal View History

2018-08-11 20:00:34 +00:00
package redir
import (
"errors"
2018-08-12 03:06:17 +00:00
"net"
2019-04-25 05:48:47 +00:00
"github.com/Dreamacro/clash/component/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) {
2018-08-11 20:00:34 +00:00
return nil, errors.New("Windows not support yet")
}