mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-14 05:11:17 +08:00
64 lines
1.2 KiB
Go
64 lines
1.2 KiB
Go
package inbound
|
|
|
|
import (
|
|
C "github.com/metacubex/mihomo/constant"
|
|
"github.com/metacubex/mihomo/listener/redir"
|
|
"github.com/metacubex/mihomo/log"
|
|
)
|
|
|
|
type RedirOption struct {
|
|
BaseOption
|
|
}
|
|
|
|
func (o RedirOption) Equal(config C.InboundConfig) bool {
|
|
return optionToString(o) == optionToString(config)
|
|
}
|
|
|
|
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.InboundListener
|
|
func (r *Redir) Config() C.InboundConfig {
|
|
return r.config
|
|
}
|
|
|
|
// Address implements constant.InboundListener
|
|
func (r *Redir) Address() string {
|
|
return r.l.Address()
|
|
}
|
|
|
|
// Listen implements constant.InboundListener
|
|
func (r *Redir) Listen(tunnel C.Tunnel) error {
|
|
var err error
|
|
r.l, err = redir.New(r.RawAddress(), tunnel, r.Additions()...)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
log.Infoln("Redir[%s] proxy listening at: %s", r.Name(), r.Address())
|
|
return nil
|
|
}
|
|
|
|
// Close implements constant.InboundListener
|
|
func (r *Redir) Close() error {
|
|
if r.l != nil {
|
|
r.l.Close()
|
|
}
|
|
return nil
|
|
}
|
|
|
|
var _ C.InboundListener = (*Redir)(nil)
|