Add redir tproxy and dns inbound

This commit is contained in:
世界 2022-07-15 08:42:02 +08:00
parent e13b72afca
commit 2c2eb31e18
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
19 changed files with 723 additions and 20 deletions

View file

@ -18,6 +18,9 @@ type _Inbound struct {
MixedOptions HTTPMixedInboundOptions `json:"-"`
ShadowsocksOptions ShadowsocksInboundOptions `json:"-"`
TunOptions TunInboundOptions `json:"-"`
RedirectOptions RedirectInboundOptions `json:"-"`
TProxyOptions TProxyInboundOptions `json:"-"`
DNSOptions DNSInboundOptions `json:"-"`
}
type Inbound _Inbound
@ -30,7 +33,10 @@ func (h Inbound) Equals(other Inbound) bool {
h.HTTPOptions.Equals(other.HTTPOptions) &&
h.MixedOptions.Equals(other.MixedOptions) &&
h.ShadowsocksOptions.Equals(other.ShadowsocksOptions) &&
h.TunOptions == other.TunOptions
h.TunOptions == other.TunOptions &&
h.RedirectOptions == other.RedirectOptions &&
h.TProxyOptions == other.TProxyOptions &&
h.DNSOptions == other.DNSOptions
}
func (h Inbound) MarshalJSON() ([]byte, error) {
@ -48,6 +54,12 @@ func (h Inbound) MarshalJSON() ([]byte, error) {
v = h.ShadowsocksOptions
case C.TypeTun:
v = h.TunOptions
case C.TypeRedirect:
v = h.RedirectOptions
case C.TypeTProxy:
v = h.TProxyOptions
case C.TypeDNS:
v = h.DNSOptions
default:
return nil, E.New("unknown inbound type: ", h.Type)
}
@ -73,6 +85,12 @@ func (h *Inbound) UnmarshalJSON(bytes []byte) error {
v = &h.ShadowsocksOptions
case C.TypeTun:
v = &h.TunOptions
case C.TypeRedirect:
v = &h.RedirectOptions
case C.TypeTProxy:
v = &h.TProxyOptions
case C.TypeDNS:
v = &h.DNSOptions
default:
return nil
}
@ -164,3 +182,17 @@ type TunInboundOptions struct {
HijackDNS bool `json:"hijack_dns,omitempty"`
InboundOptions
}
type RedirectInboundOptions struct {
ListenOptions
}
type TProxyInboundOptions struct {
ListenOptions
Network NetworkList `json:"network,omitempty"`
}
type DNSInboundOptions struct {
ListenOptions
Network NetworkList `json:"network,omitempty"`
}