mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-16 11:42:43 +08:00
Style: code style
This commit is contained in:
parent
16a6d409d9
commit
682e65cb54
3
Makefile
3
Makefile
|
@ -22,7 +22,8 @@ PLATFORM_LIST = \
|
|||
linux-mips64 \
|
||||
linux-mips64le \
|
||||
freebsd-386 \
|
||||
freebsd-amd64
|
||||
freebsd-amd64 \
|
||||
freebsd-arm64
|
||||
|
||||
WINDOWS_ARCH_LIST = \
|
||||
windows-386 \
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
// +build !darwin,!linux,!freebsd
|
||||
|
||||
package redir
|
||||
|
||||
import (
|
||||
|
@ -8,5 +10,5 @@ import (
|
|||
)
|
||||
|
||||
func parserPacket(conn net.Conn) (socks5.Addr, error) {
|
||||
return nil, errors.New("Windows not support yet")
|
||||
return nil, errors.New("system not support yet")
|
||||
}
|
|
@ -48,7 +48,7 @@ func NewTProxy(addr string) (*TProxyListener, error) {
|
|||
}
|
||||
continue
|
||||
}
|
||||
go rl.handleRedir(c)
|
||||
go rl.handleTProxy(c)
|
||||
}
|
||||
}()
|
||||
|
||||
|
@ -64,7 +64,7 @@ func (l *TProxyListener) Address() string {
|
|||
return l.address
|
||||
}
|
||||
|
||||
func (l *TProxyListener) handleRedir(conn net.Conn) {
|
||||
func (l *TProxyListener) handleTProxy(conn net.Conn) {
|
||||
target := socks5.ParseAddrToSocksAddr(conn.LocalAddr())
|
||||
conn.(*net.TCPConn).SetKeepAlive(true)
|
||||
tunnel.Add(inbound.NewSocket(target, conn, C.TPROXY))
|
||||
|
|
Loading…
Reference in New Issue
Block a user