Style: code style

This commit is contained in:
Dreamacro
2021-04-26 20:42:17 +08:00
parent 16a6d409d9
commit 682e65cb54
3 changed files with 7 additions and 4 deletions

14
proxy/redir/tcp_other.go Normal file
View File

@ -0,0 +1,14 @@
// +build !darwin,!linux,!freebsd
package redir
import (
"errors"
"net"
"github.com/Dreamacro/clash/component/socks5"
)
func parserPacket(conn net.Conn) (socks5.Addr, error) {
return nil, errors.New("system not support yet")
}