Add vmess inbound/outbound

This commit is contained in:
世界 2022-07-18 12:32:31 +08:00
parent d1e83882e5
commit 6b1a68908d
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
18 changed files with 476 additions and 105 deletions

View file

@ -15,6 +15,7 @@ type _Outbound struct {
SocksOptions SocksOutboundOptions `json:"-"`
HTTPOptions HTTPOutboundOptions `json:"-"`
ShadowsocksOptions ShadowsocksOutboundOptions `json:"-"`
VMessOptions VMessOutboundOptions `json:"-"`
}
type Outbound _Outbound
@ -24,14 +25,16 @@ func (h Outbound) MarshalJSON() ([]byte, error) {
switch h.Type {
case C.TypeDirect:
v = h.DirectOptions
case C.TypeBlock:
v = nil
case C.TypeSocks:
v = h.SocksOptions
case C.TypeHTTP:
v = h.HTTPOptions
case C.TypeShadowsocks:
v = h.ShadowsocksOptions
case C.TypeBlock:
v = nil
case C.TypeVMess:
v = h.VMessOptions
default:
return nil, E.New("unknown outbound type: ", h.Type)
}
@ -47,14 +50,16 @@ func (h *Outbound) UnmarshalJSON(bytes []byte) error {
switch h.Type {
case C.TypeDirect:
v = &h.DirectOptions
case C.TypeBlock:
v = nil
case C.TypeSocks:
v = &h.SocksOptions
case C.TypeHTTP:
v = &h.HTTPOptions
case C.TypeShadowsocks:
v = &h.ShadowsocksOptions
case C.TypeBlock:
v = nil
case C.TypeVMess:
v = &h.VMessOptions
default:
return nil
}
@ -131,3 +136,14 @@ type ShadowsocksOutboundOptions struct {
Password string `json:"password"`
Network NetworkList `json:"network,omitempty"`
}
type VMessOutboundOptions struct {
OutboundDialerOptions
ServerOptions
UUID string `json:"uuid"`
Security string `json:"security"`
AlterId int `json:"alter_id,omitempty"`
GlobalPadding bool `json:"global_padding,omitempty"`
AuthenticatedLength bool `json:"authenticated_length,omitempty"`
Network NetworkList `json:"network,omitempty"`
}