mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-16 19:56:51 +08:00
15 lines
235 B
Go
15 lines
235 B
Go
// +build !darwin,!linux,!freebsd
|
|
|
|
package redir
|
|
|
|
import (
|
|
"errors"
|
|
"net"
|
|
|
|
"github.com/Dreamacro/clash/transport/socks5"
|
|
)
|
|
|
|
func parserPacket(conn net.Conn) (socks5.Addr, error) {
|
|
return nil, errors.New("system not support yet")
|
|
}
|