mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 13:41:23 +08:00
13 lines
201 B
Go
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")
|
|
}
|