clash/proxy/redir/tcp.go

64 lines
987 B
Go
Raw Normal View History

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