clash/listener/redir/tcp_other.go

15 lines
243 B
Go
Raw Normal View History

2021-08-18 05:26:23 +00:00
//go:build !darwin && !linux && !freebsd
2021-04-26 12:42:17 +00:00
2018-08-11 20:00:34 +00:00
package redir
import (
"errors"
2018-08-12 03:06:17 +00:00
"net"
2023-11-03 13:01:45 +00:00
"github.com/metacubex/mihomo/transport/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) {
2021-04-26 12:42:17 +00:00
return nil, errors.New("system not support yet")
2018-08-11 20:00:34 +00:00
}