clash/listener/redir/tcp_other.go
2023-11-03 21:58:21 +08:00

15 lines
243 B
Go

//go:build !darwin && !linux && !freebsd
package redir
import (
"errors"
"net"
"github.com/metacubex/mihomo/transport/socks5"
)
func parserPacket(conn net.Conn) (socks5.Addr, error) {
return nil, errors.New("system not support yet")
}