mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 13:41:23 +08:00
60 lines
1.2 KiB
Go
60 lines
1.2 KiB
Go
package inbound
|
|
|
|
import (
|
|
C "github.com/Dreamacro/clash/constant"
|
|
"github.com/Dreamacro/clash/listener/redir"
|
|
"github.com/Dreamacro/clash/log"
|
|
)
|
|
|
|
type RedirOption struct {
|
|
BaseOption
|
|
}
|
|
|
|
type Redir struct {
|
|
*Base
|
|
config *RedirOption
|
|
l *redir.Listener
|
|
}
|
|
|
|
func NewRedir(options *RedirOption) (*Redir, error) {
|
|
base, err := NewBase(&options.BaseOption)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &Redir{
|
|
Base: base,
|
|
config: options,
|
|
}, nil
|
|
}
|
|
|
|
// Config implements constant.NewListener
|
|
func (r *Redir) Config() string {
|
|
return optionToString(r.config)
|
|
}
|
|
|
|
// Address implements constant.NewListener
|
|
func (r *Redir) Address() string {
|
|
return r.l.Address()
|
|
}
|
|
|
|
// Listen implements constant.NewListener
|
|
func (r *Redir) Listen(tcpIn chan<- C.ConnContext, udpIn chan<- C.PacketAdapter) error {
|
|
var err error
|
|
r.l, err = redir.NewWithInfos(r.Address(), r.name, r.preferRulesName, tcpIn)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
log.Infoln("Redir[%s] proxy listening at: %s", r.Name(), r.Address())
|
|
return nil
|
|
}
|
|
|
|
// Close implements constant.NewListener
|
|
func (r *Redir) Close() error {
|
|
if r.l != nil {
|
|
r.l.Close()
|
|
}
|
|
return nil
|
|
}
|
|
|
|
var _ C.NewListener = (*Redir)(nil)
|