github.com/yaling888/clash@v1.53.0/listener/redir/tcp_other.go (about)

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