clash/listener/inbound/http.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/http"
"github.com/metacubex/mihomo/log"
2022-12-04 05:37:14 +00:00
)
type HTTPOption struct {
BaseOption
}
2022-12-04 13:53:13 +00:00
func (o HTTPOption) Equal(config C.InboundConfig) bool {
return optionToString(o) == optionToString(config)
}
2022-12-04 05:37:14 +00:00
type HTTP struct {
*Base
config *HTTPOption
l *http.Listener
2022-12-04 05:37:14 +00:00
}
func NewHTTP(options *HTTPOption) (*HTTP, error) {
base, err := NewBase(&options.BaseOption)
if err != nil {
return nil, err
}
return &HTTP{
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 (h *HTTP) Config() C.InboundConfig {
return h.config
}
2022-12-04 13:53:13 +00:00
// Address implements constant.InboundListener
2022-12-04 05:37:14 +00:00
func (h *HTTP) Address() string {
return h.l.Address()
}
2022-12-04 13:53:13 +00:00
// Listen implements constant.InboundListener
func (h *HTTP) Listen(tunnel C.Tunnel) error {
2022-12-04 05:37:14 +00:00
var err error
h.l, err = http.New(h.RawAddress(), tunnel, h.Additions()...)
2022-12-04 05:37:14 +00:00
if err != nil {
return err
}
log.Infoln("HTTP[%s] proxy listening at: %s", h.Name(), h.Address())
return nil
}
2022-12-04 13:53:13 +00:00
// Close implements constant.InboundListener
2022-12-04 05:37:14 +00:00
func (h *HTTP) Close() error {
if h.l != nil {
return h.l.Close()
}
return nil
}
2022-12-04 13:53:13 +00:00
var _ C.InboundListener = (*HTTP)(nil)