clash/listener/inbound/redir.go

64 lines
1.2 KiB
Go
Raw Normal View History

2022-12-04 05:37:14 +00:00
package inbound
import (
2023-11-03 13:01:45 +00:00
C "github.com/metacubex/mihomo/constant"
"github.com/metacubex/mihomo/listener/redir"
"github.com/metacubex/mihomo/log"
2022-12-04 05:37:14 +00:00
)
type RedirOption struct {
BaseOption
}
2022-12-04 13:53:13 +00:00
func (o RedirOption) Equal(config C.InboundConfig) bool {
return optionToString(o) == optionToString(config)
}
2022-12-04 05:37:14 +00:00
type Redir struct {
*Base
config *RedirOption
l *redir.Listener
2022-12-04 05:37:14 +00:00
}
func NewRedir(options *RedirOption) (*Redir, error) {
base, err := NewBase(&options.BaseOption)
if err != nil {
return nil, err
}
return &Redir{
Base: base,
config: options,
2022-12-04 05:37:14 +00:00
}, nil
}
2022-12-04 13:53:13 +00:00
// Config implements constant.InboundListener
func (r *Redir) Config() C.InboundConfig {
return r.config
}
2022-12-04 13:53:13 +00:00
// Address implements constant.InboundListener
2022-12-04 05:37:14 +00:00
func (r *Redir) Address() string {
return r.l.Address()
}
2022-12-04 13:53:13 +00:00
// Listen implements constant.InboundListener
func (r *Redir) Listen(tunnel C.Tunnel) error {
2022-12-04 05:37:14 +00:00
var err error
r.l, err = redir.New(r.RawAddress(), tunnel, r.Additions()...)
2022-12-04 05:37:14 +00:00
if err != nil {
return err
}
log.Infoln("Redir[%s] proxy listening at: %s", r.Name(), r.Address())
return nil
}
2022-12-04 13:53:13 +00:00
// Close implements constant.InboundListener
2022-12-04 05:37:14 +00:00
func (r *Redir) Close() error {
if r.l != nil {
r.l.Close()
}
return nil
}
2022-12-04 13:53:13 +00:00
var _ C.InboundListener = (*Redir)(nil)