Clash.Meta/proxy/redir/tcp.go

63 lines
987 B
Go
Raw Normal View History

2018-08-12 04:00:34 +08:00
package redir
import (
"net"
2018-09-30 12:25:52 +08:00
"github.com/Dreamacro/clash/adapters/inbound"
2018-12-03 23:41:40 +08:00
"github.com/Dreamacro/clash/log"
2018-08-12 04:00:34 +08:00
"github.com/Dreamacro/clash/tunnel"
)
var (
tun = tunnel.Instance()
)
type redirListener struct {
net.Listener
address string
closed bool
}
func NewRedirProxy(addr string) (*redirListener, error) {
2018-08-12 04:00:34 +08:00
l, err := net.Listen("tcp", addr)
if err != nil {
return nil, err
2018-08-12 04:00:34 +08:00
}
rl := &redirListener{l, addr, false}
2018-08-12 04:00:34 +08:00
go func() {
2018-12-03 23:41:40 +08:00
log.Infoln("Redir proxy listening at: %s", addr)
2018-08-12 04:00:34 +08:00
for {
c, err := l.Accept()
if err != nil {
if rl.closed {
2018-08-12 04:00:34 +08:00
break
}
continue
}
go handleRedir(c)
}
}()
return rl, nil
}
func (l *redirListener) Close() {
l.closed = true
l.Listener.Close()
}
2018-08-12 04:00:34 +08:00
func (l *redirListener) Address() string {
return l.address
2018-08-12 04:00:34 +08:00
}
func handleRedir(conn net.Conn) {
target, err := parserPacket(conn)
if err != nil {
conn.Close()
return
}
conn.(*net.TCPConn).SetKeepAlive(true)
2018-08-27 00:06:40 +08:00
tun.Add(adapters.NewSocket(target, conn))
2018-08-12 04:00:34 +08:00
}