Add tun inbound for linux

This commit is contained in:
世界 2022-07-09 19:18:37 +08:00
parent c463d0cf80
commit 730144cc26
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
19 changed files with 623 additions and 22 deletions

View file

@ -17,6 +17,7 @@ type _Inbound struct {
HTTPOptions SimpleInboundOptions `json:"-"`
MixedOptions SimpleInboundOptions `json:"-"`
ShadowsocksOptions ShadowsocksInboundOptions `json:"-"`
TunOptions TunInboundOptions `json:"-"`
}
type Inbound _Inbound
@ -28,7 +29,8 @@ func (h Inbound) Equals(other Inbound) bool {
h.SocksOptions.Equals(other.SocksOptions) &&
h.HTTPOptions.Equals(other.HTTPOptions) &&
h.MixedOptions.Equals(other.MixedOptions) &&
h.ShadowsocksOptions.Equals(other.ShadowsocksOptions)
h.ShadowsocksOptions.Equals(other.ShadowsocksOptions) &&
h.TunOptions == other.TunOptions
}
func (h Inbound) MarshalJSON() ([]byte, error) {
@ -44,6 +46,8 @@ func (h Inbound) MarshalJSON() ([]byte, error) {
v = h.MixedOptions
case C.TypeShadowsocks:
v = h.ShadowsocksOptions
case C.TypeTun:
v = h.TunOptions
default:
return nil, E.New("unknown inbound type: ", h.Type)
}
@ -67,6 +71,8 @@ func (h *Inbound) UnmarshalJSON(bytes []byte) error {
v = &h.MixedOptions
case C.TypeShadowsocks:
v = &h.ShadowsocksOptions
case C.TypeTun:
v = &h.TunOptions
default:
return nil
}
@ -132,3 +138,10 @@ type ShadowsocksDestination struct {
Password string `json:"password"`
ServerOptions
}
type TunInboundOptions struct {
InterfaceName string `json:"interface_name"`
MTU uint32 `json:"mtu,omitempty"`
Inet4Address ListenPrefix `json:"inet4_address"`
Inet6Address ListenPrefix `json:"inet6_address"`
}