github.com/chwjbn/xclash@v0.2.0/listener/redir/tcp_other.go (about) 1 //go:build !darwin && !linux && !freebsd 2 // +build !darwin,!linux,!freebsd 3 4 package redir 5 6 import ( 7 "errors" 8 "net" 9 10 "github.com/chwjbn/xclash/transport/socks5" 11 ) 12 13 func parserPacket(conn net.Conn) (socks5.Addr, error) { 14 return nil, errors.New("system not support yet") 15 }