|
|
@@ -1,22 +1,24 @@
|
|
|
package router
|
|
|
|
|
|
import (
|
|
|
- fmt "fmt"
|
|
|
proto "github.com/golang/protobuf/proto"
|
|
|
- math "math"
|
|
|
+ protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
|
+ protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
|
+ reflect "reflect"
|
|
|
+ sync "sync"
|
|
|
net "v2ray.com/core/common/net"
|
|
|
)
|
|
|
|
|
|
-// Reference imports to suppress errors if they are not otherwise used.
|
|
|
-var _ = proto.Marshal
|
|
|
-var _ = fmt.Errorf
|
|
|
-var _ = math.Inf
|
|
|
+const (
|
|
|
+ // Verify that this generated code is sufficiently up-to-date.
|
|
|
+ _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
|
+ // Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
|
+ _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
|
+)
|
|
|
|
|
|
-// This is a compile-time assertion to ensure that this generated file
|
|
|
-// is compatible with the proto package it is being compiled against.
|
|
|
-// A compilation error at this line likely means your copy of the
|
|
|
-// proto package needs to be updated.
|
|
|
-const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
|
|
|
+// This is a compile-time assertion that a sufficiently up-to-date version
|
|
|
+// of the legacy proto package is being used.
|
|
|
+const _ = proto.ProtoPackageIsVersion4
|
|
|
|
|
|
// Type of domain value.
|
|
|
type Domain_Type int32
|
|
|
@@ -32,26 +34,47 @@ const (
|
|
|
Domain_Full Domain_Type = 3
|
|
|
)
|
|
|
|
|
|
-var Domain_Type_name = map[int32]string{
|
|
|
- 0: "Plain",
|
|
|
- 1: "Regex",
|
|
|
- 2: "Domain",
|
|
|
- 3: "Full",
|
|
|
-}
|
|
|
+// Enum value maps for Domain_Type.
|
|
|
+var (
|
|
|
+ Domain_Type_name = map[int32]string{
|
|
|
+ 0: "Plain",
|
|
|
+ 1: "Regex",
|
|
|
+ 2: "Domain",
|
|
|
+ 3: "Full",
|
|
|
+ }
|
|
|
+ Domain_Type_value = map[string]int32{
|
|
|
+ "Plain": 0,
|
|
|
+ "Regex": 1,
|
|
|
+ "Domain": 2,
|
|
|
+ "Full": 3,
|
|
|
+ }
|
|
|
+)
|
|
|
|
|
|
-var Domain_Type_value = map[string]int32{
|
|
|
- "Plain": 0,
|
|
|
- "Regex": 1,
|
|
|
- "Domain": 2,
|
|
|
- "Full": 3,
|
|
|
+func (x Domain_Type) Enum() *Domain_Type {
|
|
|
+ p := new(Domain_Type)
|
|
|
+ *p = x
|
|
|
+ return p
|
|
|
}
|
|
|
|
|
|
func (x Domain_Type) String() string {
|
|
|
- return proto.EnumName(Domain_Type_name, int32(x))
|
|
|
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
|
+}
|
|
|
+
|
|
|
+func (Domain_Type) Descriptor() protoreflect.EnumDescriptor {
|
|
|
+ return file_v2ray_com_core_app_router_config_proto_enumTypes[0].Descriptor()
|
|
|
+}
|
|
|
+
|
|
|
+func (Domain_Type) Type() protoreflect.EnumType {
|
|
|
+ return &file_v2ray_com_core_app_router_config_proto_enumTypes[0]
|
|
|
+}
|
|
|
+
|
|
|
+func (x Domain_Type) Number() protoreflect.EnumNumber {
|
|
|
+ return protoreflect.EnumNumber(x)
|
|
|
}
|
|
|
|
|
|
+// Deprecated: Use Domain_Type.Descriptor instead.
|
|
|
func (Domain_Type) EnumDescriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_6b1608360690c5fc, []int{0, 0}
|
|
|
+ return file_v2ray_com_core_app_router_config_proto_rawDescGZIP(), []int{0, 0}
|
|
|
}
|
|
|
|
|
|
type Config_DomainStrategy int32
|
|
|
@@ -67,399 +90,384 @@ const (
|
|
|
Config_IpOnDemand Config_DomainStrategy = 3
|
|
|
)
|
|
|
|
|
|
-var Config_DomainStrategy_name = map[int32]string{
|
|
|
- 0: "AsIs",
|
|
|
- 1: "UseIp",
|
|
|
- 2: "IpIfNonMatch",
|
|
|
- 3: "IpOnDemand",
|
|
|
-}
|
|
|
+// Enum value maps for Config_DomainStrategy.
|
|
|
+var (
|
|
|
+ Config_DomainStrategy_name = map[int32]string{
|
|
|
+ 0: "AsIs",
|
|
|
+ 1: "UseIp",
|
|
|
+ 2: "IpIfNonMatch",
|
|
|
+ 3: "IpOnDemand",
|
|
|
+ }
|
|
|
+ Config_DomainStrategy_value = map[string]int32{
|
|
|
+ "AsIs": 0,
|
|
|
+ "UseIp": 1,
|
|
|
+ "IpIfNonMatch": 2,
|
|
|
+ "IpOnDemand": 3,
|
|
|
+ }
|
|
|
+)
|
|
|
|
|
|
-var Config_DomainStrategy_value = map[string]int32{
|
|
|
- "AsIs": 0,
|
|
|
- "UseIp": 1,
|
|
|
- "IpIfNonMatch": 2,
|
|
|
- "IpOnDemand": 3,
|
|
|
+func (x Config_DomainStrategy) Enum() *Config_DomainStrategy {
|
|
|
+ p := new(Config_DomainStrategy)
|
|
|
+ *p = x
|
|
|
+ return p
|
|
|
}
|
|
|
|
|
|
func (x Config_DomainStrategy) String() string {
|
|
|
- return proto.EnumName(Config_DomainStrategy_name, int32(x))
|
|
|
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
|
+}
|
|
|
+
|
|
|
+func (Config_DomainStrategy) Descriptor() protoreflect.EnumDescriptor {
|
|
|
+ return file_v2ray_com_core_app_router_config_proto_enumTypes[1].Descriptor()
|
|
|
}
|
|
|
|
|
|
+func (Config_DomainStrategy) Type() protoreflect.EnumType {
|
|
|
+ return &file_v2ray_com_core_app_router_config_proto_enumTypes[1]
|
|
|
+}
|
|
|
+
|
|
|
+func (x Config_DomainStrategy) Number() protoreflect.EnumNumber {
|
|
|
+ return protoreflect.EnumNumber(x)
|
|
|
+}
|
|
|
+
|
|
|
+// Deprecated: Use Config_DomainStrategy.Descriptor instead.
|
|
|
func (Config_DomainStrategy) EnumDescriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_6b1608360690c5fc, []int{8, 0}
|
|
|
+ return file_v2ray_com_core_app_router_config_proto_rawDescGZIP(), []int{8, 0}
|
|
|
}
|
|
|
|
|
|
// Domain for routing decision.
|
|
|
type Domain struct {
|
|
|
+ state protoimpl.MessageState
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
+
|
|
|
// Domain matching type.
|
|
|
Type Domain_Type `protobuf:"varint,1,opt,name=type,proto3,enum=v2ray.core.app.router.Domain_Type" json:"type,omitempty"`
|
|
|
// Domain value.
|
|
|
Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
|
|
|
// Attributes of this domain. May be used for filtering.
|
|
|
- Attribute []*Domain_Attribute `protobuf:"bytes,3,rep,name=attribute,proto3" json:"attribute,omitempty"`
|
|
|
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
- XXX_unrecognized []byte `json:"-"`
|
|
|
- XXX_sizecache int32 `json:"-"`
|
|
|
+ Attribute []*Domain_Attribute `protobuf:"bytes,3,rep,name=attribute,proto3" json:"attribute,omitempty"`
|
|
|
}
|
|
|
|
|
|
-func (m *Domain) Reset() { *m = Domain{} }
|
|
|
-func (m *Domain) String() string { return proto.CompactTextString(m) }
|
|
|
-func (*Domain) ProtoMessage() {}
|
|
|
-func (*Domain) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_6b1608360690c5fc, []int{0}
|
|
|
+func (x *Domain) Reset() {
|
|
|
+ *x = Domain{}
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
+ mi := &file_v2ray_com_core_app_router_config_proto_msgTypes[0]
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
-func (m *Domain) XXX_Unmarshal(b []byte) error {
|
|
|
- return xxx_messageInfo_Domain.Unmarshal(m, b)
|
|
|
-}
|
|
|
-func (m *Domain) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
- return xxx_messageInfo_Domain.Marshal(b, m, deterministic)
|
|
|
-}
|
|
|
-func (m *Domain) XXX_Merge(src proto.Message) {
|
|
|
- xxx_messageInfo_Domain.Merge(m, src)
|
|
|
+func (x *Domain) String() string {
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
}
|
|
|
-func (m *Domain) XXX_Size() int {
|
|
|
- return xxx_messageInfo_Domain.Size(m)
|
|
|
-}
|
|
|
-func (m *Domain) XXX_DiscardUnknown() {
|
|
|
- xxx_messageInfo_Domain.DiscardUnknown(m)
|
|
|
+
|
|
|
+func (*Domain) ProtoMessage() {}
|
|
|
+
|
|
|
+func (x *Domain) ProtoReflect() protoreflect.Message {
|
|
|
+ mi := &file_v2ray_com_core_app_router_config_proto_msgTypes[0]
|
|
|
+ if protoimpl.UnsafeEnabled && x != nil {
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ if ms.LoadMessageInfo() == nil {
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
+ return ms
|
|
|
+ }
|
|
|
+ return mi.MessageOf(x)
|
|
|
}
|
|
|
|
|
|
-var xxx_messageInfo_Domain proto.InternalMessageInfo
|
|
|
+// Deprecated: Use Domain.ProtoReflect.Descriptor instead.
|
|
|
+func (*Domain) Descriptor() ([]byte, []int) {
|
|
|
+ return file_v2ray_com_core_app_router_config_proto_rawDescGZIP(), []int{0}
|
|
|
+}
|
|
|
|
|
|
-func (m *Domain) GetType() Domain_Type {
|
|
|
- if m != nil {
|
|
|
- return m.Type
|
|
|
+func (x *Domain) GetType() Domain_Type {
|
|
|
+ if x != nil {
|
|
|
+ return x.Type
|
|
|
}
|
|
|
return Domain_Plain
|
|
|
}
|
|
|
|
|
|
-func (m *Domain) GetValue() string {
|
|
|
- if m != nil {
|
|
|
- return m.Value
|
|
|
+func (x *Domain) GetValue() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.Value
|
|
|
}
|
|
|
return ""
|
|
|
}
|
|
|
|
|
|
-func (m *Domain) GetAttribute() []*Domain_Attribute {
|
|
|
- if m != nil {
|
|
|
- return m.Attribute
|
|
|
+func (x *Domain) GetAttribute() []*Domain_Attribute {
|
|
|
+ if x != nil {
|
|
|
+ return x.Attribute
|
|
|
}
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
-type Domain_Attribute struct {
|
|
|
- Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
|
|
|
- // Types that are valid to be assigned to TypedValue:
|
|
|
- // *Domain_Attribute_BoolValue
|
|
|
- // *Domain_Attribute_IntValue
|
|
|
- TypedValue isDomain_Attribute_TypedValue `protobuf_oneof:"typed_value"`
|
|
|
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
- XXX_unrecognized []byte `json:"-"`
|
|
|
- XXX_sizecache int32 `json:"-"`
|
|
|
-}
|
|
|
-
|
|
|
-func (m *Domain_Attribute) Reset() { *m = Domain_Attribute{} }
|
|
|
-func (m *Domain_Attribute) String() string { return proto.CompactTextString(m) }
|
|
|
-func (*Domain_Attribute) ProtoMessage() {}
|
|
|
-func (*Domain_Attribute) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_6b1608360690c5fc, []int{0, 0}
|
|
|
-}
|
|
|
+// IP for routing decision, in CIDR form.
|
|
|
+type CIDR struct {
|
|
|
+ state protoimpl.MessageState
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
-func (m *Domain_Attribute) XXX_Unmarshal(b []byte) error {
|
|
|
- return xxx_messageInfo_Domain_Attribute.Unmarshal(m, b)
|
|
|
-}
|
|
|
-func (m *Domain_Attribute) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
- return xxx_messageInfo_Domain_Attribute.Marshal(b, m, deterministic)
|
|
|
-}
|
|
|
-func (m *Domain_Attribute) XXX_Merge(src proto.Message) {
|
|
|
- xxx_messageInfo_Domain_Attribute.Merge(m, src)
|
|
|
-}
|
|
|
-func (m *Domain_Attribute) XXX_Size() int {
|
|
|
- return xxx_messageInfo_Domain_Attribute.Size(m)
|
|
|
-}
|
|
|
-func (m *Domain_Attribute) XXX_DiscardUnknown() {
|
|
|
- xxx_messageInfo_Domain_Attribute.DiscardUnknown(m)
|
|
|
+ // IP address, should be either 4 or 16 bytes.
|
|
|
+ Ip []byte `protobuf:"bytes,1,opt,name=ip,proto3" json:"ip,omitempty"`
|
|
|
+ // Number of leading ones in the network mask.
|
|
|
+ Prefix uint32 `protobuf:"varint,2,opt,name=prefix,proto3" json:"prefix,omitempty"`
|
|
|
}
|
|
|
|
|
|
-var xxx_messageInfo_Domain_Attribute proto.InternalMessageInfo
|
|
|
-
|
|
|
-func (m *Domain_Attribute) GetKey() string {
|
|
|
- if m != nil {
|
|
|
- return m.Key
|
|
|
+func (x *CIDR) Reset() {
|
|
|
+ *x = CIDR{}
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
+ mi := &file_v2ray_com_core_app_router_config_proto_msgTypes[1]
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
}
|
|
|
- return ""
|
|
|
}
|
|
|
|
|
|
-type isDomain_Attribute_TypedValue interface {
|
|
|
- isDomain_Attribute_TypedValue()
|
|
|
+func (x *CIDR) String() string {
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
}
|
|
|
|
|
|
-type Domain_Attribute_BoolValue struct {
|
|
|
- BoolValue bool `protobuf:"varint,2,opt,name=bool_value,json=boolValue,proto3,oneof"`
|
|
|
-}
|
|
|
+func (*CIDR) ProtoMessage() {}
|
|
|
|
|
|
-type Domain_Attribute_IntValue struct {
|
|
|
- IntValue int64 `protobuf:"varint,3,opt,name=int_value,json=intValue,proto3,oneof"`
|
|
|
+func (x *CIDR) ProtoReflect() protoreflect.Message {
|
|
|
+ mi := &file_v2ray_com_core_app_router_config_proto_msgTypes[1]
|
|
|
+ if protoimpl.UnsafeEnabled && x != nil {
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ if ms.LoadMessageInfo() == nil {
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
+ return ms
|
|
|
+ }
|
|
|
+ return mi.MessageOf(x)
|
|
|
}
|
|
|
|
|
|
-func (*Domain_Attribute_BoolValue) isDomain_Attribute_TypedValue() {}
|
|
|
-
|
|
|
-func (*Domain_Attribute_IntValue) isDomain_Attribute_TypedValue() {}
|
|
|
-
|
|
|
-func (m *Domain_Attribute) GetTypedValue() isDomain_Attribute_TypedValue {
|
|
|
- if m != nil {
|
|
|
- return m.TypedValue
|
|
|
- }
|
|
|
- return nil
|
|
|
+// Deprecated: Use CIDR.ProtoReflect.Descriptor instead.
|
|
|
+func (*CIDR) Descriptor() ([]byte, []int) {
|
|
|
+ return file_v2ray_com_core_app_router_config_proto_rawDescGZIP(), []int{1}
|
|
|
}
|
|
|
|
|
|
-func (m *Domain_Attribute) GetBoolValue() bool {
|
|
|
- if x, ok := m.GetTypedValue().(*Domain_Attribute_BoolValue); ok {
|
|
|
- return x.BoolValue
|
|
|
+func (x *CIDR) GetIp() []byte {
|
|
|
+ if x != nil {
|
|
|
+ return x.Ip
|
|
|
}
|
|
|
- return false
|
|
|
+ return nil
|
|
|
}
|
|
|
|
|
|
-func (m *Domain_Attribute) GetIntValue() int64 {
|
|
|
- if x, ok := m.GetTypedValue().(*Domain_Attribute_IntValue); ok {
|
|
|
- return x.IntValue
|
|
|
+func (x *CIDR) GetPrefix() uint32 {
|
|
|
+ if x != nil {
|
|
|
+ return x.Prefix
|
|
|
}
|
|
|
return 0
|
|
|
}
|
|
|
|
|
|
-// XXX_OneofWrappers is for the internal use of the proto package.
|
|
|
-func (*Domain_Attribute) XXX_OneofWrappers() []interface{} {
|
|
|
- return []interface{}{
|
|
|
- (*Domain_Attribute_BoolValue)(nil),
|
|
|
- (*Domain_Attribute_IntValue)(nil),
|
|
|
- }
|
|
|
-}
|
|
|
+type GeoIP struct {
|
|
|
+ state protoimpl.MessageState
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
-// IP for routing decision, in CIDR form.
|
|
|
-type CIDR struct {
|
|
|
- // IP address, should be either 4 or 16 bytes.
|
|
|
- Ip []byte `protobuf:"bytes,1,opt,name=ip,proto3" json:"ip,omitempty"`
|
|
|
- // Number of leading ones in the network mask.
|
|
|
- Prefix uint32 `protobuf:"varint,2,opt,name=prefix,proto3" json:"prefix,omitempty"`
|
|
|
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
- XXX_unrecognized []byte `json:"-"`
|
|
|
- XXX_sizecache int32 `json:"-"`
|
|
|
+ CountryCode string `protobuf:"bytes,1,opt,name=country_code,json=countryCode,proto3" json:"country_code,omitempty"`
|
|
|
+ Cidr []*CIDR `protobuf:"bytes,2,rep,name=cidr,proto3" json:"cidr,omitempty"`
|
|
|
}
|
|
|
|
|
|
-func (m *CIDR) Reset() { *m = CIDR{} }
|
|
|
-func (m *CIDR) String() string { return proto.CompactTextString(m) }
|
|
|
-func (*CIDR) ProtoMessage() {}
|
|
|
-func (*CIDR) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_6b1608360690c5fc, []int{1}
|
|
|
+func (x *GeoIP) Reset() {
|
|
|
+ *x = GeoIP{}
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
+ mi := &file_v2ray_com_core_app_router_config_proto_msgTypes[2]
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
-func (m *CIDR) XXX_Unmarshal(b []byte) error {
|
|
|
- return xxx_messageInfo_CIDR.Unmarshal(m, b)
|
|
|
+func (x *GeoIP) String() string {
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
}
|
|
|
-func (m *CIDR) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
- return xxx_messageInfo_CIDR.Marshal(b, m, deterministic)
|
|
|
-}
|
|
|
-func (m *CIDR) XXX_Merge(src proto.Message) {
|
|
|
- xxx_messageInfo_CIDR.Merge(m, src)
|
|
|
-}
|
|
|
-func (m *CIDR) XXX_Size() int {
|
|
|
- return xxx_messageInfo_CIDR.Size(m)
|
|
|
-}
|
|
|
-func (m *CIDR) XXX_DiscardUnknown() {
|
|
|
- xxx_messageInfo_CIDR.DiscardUnknown(m)
|
|
|
-}
|
|
|
-
|
|
|
-var xxx_messageInfo_CIDR proto.InternalMessageInfo
|
|
|
|
|
|
-func (m *CIDR) GetIp() []byte {
|
|
|
- if m != nil {
|
|
|
- return m.Ip
|
|
|
- }
|
|
|
- return nil
|
|
|
-}
|
|
|
+func (*GeoIP) ProtoMessage() {}
|
|
|
|
|
|
-func (m *CIDR) GetPrefix() uint32 {
|
|
|
- if m != nil {
|
|
|
- return m.Prefix
|
|
|
+func (x *GeoIP) ProtoReflect() protoreflect.Message {
|
|
|
+ mi := &file_v2ray_com_core_app_router_config_proto_msgTypes[2]
|
|
|
+ if protoimpl.UnsafeEnabled && x != nil {
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ if ms.LoadMessageInfo() == nil {
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
+ return ms
|
|
|
}
|
|
|
- return 0
|
|
|
-}
|
|
|
-
|
|
|
-type GeoIP struct {
|
|
|
- CountryCode string `protobuf:"bytes,1,opt,name=country_code,json=countryCode,proto3" json:"country_code,omitempty"`
|
|
|
- Cidr []*CIDR `protobuf:"bytes,2,rep,name=cidr,proto3" json:"cidr,omitempty"`
|
|
|
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
- XXX_unrecognized []byte `json:"-"`
|
|
|
- XXX_sizecache int32 `json:"-"`
|
|
|
+ return mi.MessageOf(x)
|
|
|
}
|
|
|
|
|
|
-func (m *GeoIP) Reset() { *m = GeoIP{} }
|
|
|
-func (m *GeoIP) String() string { return proto.CompactTextString(m) }
|
|
|
-func (*GeoIP) ProtoMessage() {}
|
|
|
+// Deprecated: Use GeoIP.ProtoReflect.Descriptor instead.
|
|
|
func (*GeoIP) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_6b1608360690c5fc, []int{2}
|
|
|
-}
|
|
|
-
|
|
|
-func (m *GeoIP) XXX_Unmarshal(b []byte) error {
|
|
|
- return xxx_messageInfo_GeoIP.Unmarshal(m, b)
|
|
|
-}
|
|
|
-func (m *GeoIP) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
- return xxx_messageInfo_GeoIP.Marshal(b, m, deterministic)
|
|
|
-}
|
|
|
-func (m *GeoIP) XXX_Merge(src proto.Message) {
|
|
|
- xxx_messageInfo_GeoIP.Merge(m, src)
|
|
|
+ return file_v2ray_com_core_app_router_config_proto_rawDescGZIP(), []int{2}
|
|
|
}
|
|
|
-func (m *GeoIP) XXX_Size() int {
|
|
|
- return xxx_messageInfo_GeoIP.Size(m)
|
|
|
-}
|
|
|
-func (m *GeoIP) XXX_DiscardUnknown() {
|
|
|
- xxx_messageInfo_GeoIP.DiscardUnknown(m)
|
|
|
-}
|
|
|
-
|
|
|
-var xxx_messageInfo_GeoIP proto.InternalMessageInfo
|
|
|
|
|
|
-func (m *GeoIP) GetCountryCode() string {
|
|
|
- if m != nil {
|
|
|
- return m.CountryCode
|
|
|
+func (x *GeoIP) GetCountryCode() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.CountryCode
|
|
|
}
|
|
|
return ""
|
|
|
}
|
|
|
|
|
|
-func (m *GeoIP) GetCidr() []*CIDR {
|
|
|
- if m != nil {
|
|
|
- return m.Cidr
|
|
|
+func (x *GeoIP) GetCidr() []*CIDR {
|
|
|
+ if x != nil {
|
|
|
+ return x.Cidr
|
|
|
}
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
type GeoIPList struct {
|
|
|
- Entry []*GeoIP `protobuf:"bytes,1,rep,name=entry,proto3" json:"entry,omitempty"`
|
|
|
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
- XXX_unrecognized []byte `json:"-"`
|
|
|
- XXX_sizecache int32 `json:"-"`
|
|
|
-}
|
|
|
+ state protoimpl.MessageState
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
-func (m *GeoIPList) Reset() { *m = GeoIPList{} }
|
|
|
-func (m *GeoIPList) String() string { return proto.CompactTextString(m) }
|
|
|
-func (*GeoIPList) ProtoMessage() {}
|
|
|
-func (*GeoIPList) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_6b1608360690c5fc, []int{3}
|
|
|
+ Entry []*GeoIP `protobuf:"bytes,1,rep,name=entry,proto3" json:"entry,omitempty"`
|
|
|
}
|
|
|
|
|
|
-func (m *GeoIPList) XXX_Unmarshal(b []byte) error {
|
|
|
- return xxx_messageInfo_GeoIPList.Unmarshal(m, b)
|
|
|
-}
|
|
|
-func (m *GeoIPList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
- return xxx_messageInfo_GeoIPList.Marshal(b, m, deterministic)
|
|
|
-}
|
|
|
-func (m *GeoIPList) XXX_Merge(src proto.Message) {
|
|
|
- xxx_messageInfo_GeoIPList.Merge(m, src)
|
|
|
+func (x *GeoIPList) Reset() {
|
|
|
+ *x = GeoIPList{}
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
+ mi := &file_v2ray_com_core_app_router_config_proto_msgTypes[3]
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
}
|
|
|
-func (m *GeoIPList) XXX_Size() int {
|
|
|
- return xxx_messageInfo_GeoIPList.Size(m)
|
|
|
+
|
|
|
+func (x *GeoIPList) String() string {
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
}
|
|
|
-func (m *GeoIPList) XXX_DiscardUnknown() {
|
|
|
- xxx_messageInfo_GeoIPList.DiscardUnknown(m)
|
|
|
+
|
|
|
+func (*GeoIPList) ProtoMessage() {}
|
|
|
+
|
|
|
+func (x *GeoIPList) ProtoReflect() protoreflect.Message {
|
|
|
+ mi := &file_v2ray_com_core_app_router_config_proto_msgTypes[3]
|
|
|
+ if protoimpl.UnsafeEnabled && x != nil {
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ if ms.LoadMessageInfo() == nil {
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
+ return ms
|
|
|
+ }
|
|
|
+ return mi.MessageOf(x)
|
|
|
}
|
|
|
|
|
|
-var xxx_messageInfo_GeoIPList proto.InternalMessageInfo
|
|
|
+// Deprecated: Use GeoIPList.ProtoReflect.Descriptor instead.
|
|
|
+func (*GeoIPList) Descriptor() ([]byte, []int) {
|
|
|
+ return file_v2ray_com_core_app_router_config_proto_rawDescGZIP(), []int{3}
|
|
|
+}
|
|
|
|
|
|
-func (m *GeoIPList) GetEntry() []*GeoIP {
|
|
|
- if m != nil {
|
|
|
- return m.Entry
|
|
|
+func (x *GeoIPList) GetEntry() []*GeoIP {
|
|
|
+ if x != nil {
|
|
|
+ return x.Entry
|
|
|
}
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
type GeoSite struct {
|
|
|
- CountryCode string `protobuf:"bytes,1,opt,name=country_code,json=countryCode,proto3" json:"country_code,omitempty"`
|
|
|
- Domain []*Domain `protobuf:"bytes,2,rep,name=domain,proto3" json:"domain,omitempty"`
|
|
|
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
- XXX_unrecognized []byte `json:"-"`
|
|
|
- XXX_sizecache int32 `json:"-"`
|
|
|
-}
|
|
|
+ state protoimpl.MessageState
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
-func (m *GeoSite) Reset() { *m = GeoSite{} }
|
|
|
-func (m *GeoSite) String() string { return proto.CompactTextString(m) }
|
|
|
-func (*GeoSite) ProtoMessage() {}
|
|
|
-func (*GeoSite) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_6b1608360690c5fc, []int{4}
|
|
|
+ CountryCode string `protobuf:"bytes,1,opt,name=country_code,json=countryCode,proto3" json:"country_code,omitempty"`
|
|
|
+ Domain []*Domain `protobuf:"bytes,2,rep,name=domain,proto3" json:"domain,omitempty"`
|
|
|
}
|
|
|
|
|
|
-func (m *GeoSite) XXX_Unmarshal(b []byte) error {
|
|
|
- return xxx_messageInfo_GeoSite.Unmarshal(m, b)
|
|
|
-}
|
|
|
-func (m *GeoSite) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
- return xxx_messageInfo_GeoSite.Marshal(b, m, deterministic)
|
|
|
-}
|
|
|
-func (m *GeoSite) XXX_Merge(src proto.Message) {
|
|
|
- xxx_messageInfo_GeoSite.Merge(m, src)
|
|
|
+func (x *GeoSite) Reset() {
|
|
|
+ *x = GeoSite{}
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
+ mi := &file_v2ray_com_core_app_router_config_proto_msgTypes[4]
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
}
|
|
|
-func (m *GeoSite) XXX_Size() int {
|
|
|
- return xxx_messageInfo_GeoSite.Size(m)
|
|
|
+
|
|
|
+func (x *GeoSite) String() string {
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
}
|
|
|
-func (m *GeoSite) XXX_DiscardUnknown() {
|
|
|
- xxx_messageInfo_GeoSite.DiscardUnknown(m)
|
|
|
+
|
|
|
+func (*GeoSite) ProtoMessage() {}
|
|
|
+
|
|
|
+func (x *GeoSite) ProtoReflect() protoreflect.Message {
|
|
|
+ mi := &file_v2ray_com_core_app_router_config_proto_msgTypes[4]
|
|
|
+ if protoimpl.UnsafeEnabled && x != nil {
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ if ms.LoadMessageInfo() == nil {
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
+ return ms
|
|
|
+ }
|
|
|
+ return mi.MessageOf(x)
|
|
|
}
|
|
|
|
|
|
-var xxx_messageInfo_GeoSite proto.InternalMessageInfo
|
|
|
+// Deprecated: Use GeoSite.ProtoReflect.Descriptor instead.
|
|
|
+func (*GeoSite) Descriptor() ([]byte, []int) {
|
|
|
+ return file_v2ray_com_core_app_router_config_proto_rawDescGZIP(), []int{4}
|
|
|
+}
|
|
|
|
|
|
-func (m *GeoSite) GetCountryCode() string {
|
|
|
- if m != nil {
|
|
|
- return m.CountryCode
|
|
|
+func (x *GeoSite) GetCountryCode() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.CountryCode
|
|
|
}
|
|
|
return ""
|
|
|
}
|
|
|
|
|
|
-func (m *GeoSite) GetDomain() []*Domain {
|
|
|
- if m != nil {
|
|
|
- return m.Domain
|
|
|
+func (x *GeoSite) GetDomain() []*Domain {
|
|
|
+ if x != nil {
|
|
|
+ return x.Domain
|
|
|
}
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
type GeoSiteList struct {
|
|
|
- Entry []*GeoSite `protobuf:"bytes,1,rep,name=entry,proto3" json:"entry,omitempty"`
|
|
|
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
- XXX_unrecognized []byte `json:"-"`
|
|
|
- XXX_sizecache int32 `json:"-"`
|
|
|
-}
|
|
|
+ state protoimpl.MessageState
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
-func (m *GeoSiteList) Reset() { *m = GeoSiteList{} }
|
|
|
-func (m *GeoSiteList) String() string { return proto.CompactTextString(m) }
|
|
|
-func (*GeoSiteList) ProtoMessage() {}
|
|
|
-func (*GeoSiteList) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_6b1608360690c5fc, []int{5}
|
|
|
+ Entry []*GeoSite `protobuf:"bytes,1,rep,name=entry,proto3" json:"entry,omitempty"`
|
|
|
}
|
|
|
|
|
|
-func (m *GeoSiteList) XXX_Unmarshal(b []byte) error {
|
|
|
- return xxx_messageInfo_GeoSiteList.Unmarshal(m, b)
|
|
|
-}
|
|
|
-func (m *GeoSiteList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
- return xxx_messageInfo_GeoSiteList.Marshal(b, m, deterministic)
|
|
|
-}
|
|
|
-func (m *GeoSiteList) XXX_Merge(src proto.Message) {
|
|
|
- xxx_messageInfo_GeoSiteList.Merge(m, src)
|
|
|
+func (x *GeoSiteList) Reset() {
|
|
|
+ *x = GeoSiteList{}
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
+ mi := &file_v2ray_com_core_app_router_config_proto_msgTypes[5]
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
}
|
|
|
-func (m *GeoSiteList) XXX_Size() int {
|
|
|
- return xxx_messageInfo_GeoSiteList.Size(m)
|
|
|
+
|
|
|
+func (x *GeoSiteList) String() string {
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
}
|
|
|
-func (m *GeoSiteList) XXX_DiscardUnknown() {
|
|
|
- xxx_messageInfo_GeoSiteList.DiscardUnknown(m)
|
|
|
+
|
|
|
+func (*GeoSiteList) ProtoMessage() {}
|
|
|
+
|
|
|
+func (x *GeoSiteList) ProtoReflect() protoreflect.Message {
|
|
|
+ mi := &file_v2ray_com_core_app_router_config_proto_msgTypes[5]
|
|
|
+ if protoimpl.UnsafeEnabled && x != nil {
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ if ms.LoadMessageInfo() == nil {
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
+ return ms
|
|
|
+ }
|
|
|
+ return mi.MessageOf(x)
|
|
|
}
|
|
|
|
|
|
-var xxx_messageInfo_GeoSiteList proto.InternalMessageInfo
|
|
|
+// Deprecated: Use GeoSiteList.ProtoReflect.Descriptor instead.
|
|
|
+func (*GeoSiteList) Descriptor() ([]byte, []int) {
|
|
|
+ return file_v2ray_com_core_app_router_config_proto_rawDescGZIP(), []int{5}
|
|
|
+}
|
|
|
|
|
|
-func (m *GeoSiteList) GetEntry() []*GeoSite {
|
|
|
- if m != nil {
|
|
|
- return m.Entry
|
|
|
+func (x *GeoSiteList) GetEntry() []*GeoSite {
|
|
|
+ if x != nil {
|
|
|
+ return x.Entry
|
|
|
}
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
type RoutingRule struct {
|
|
|
- // Types that are valid to be assigned to TargetTag:
|
|
|
+ state protoimpl.MessageState
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
+
|
|
|
+ // Types that are assignable to TargetTag:
|
|
|
// *RoutingRule_Tag
|
|
|
// *RoutingRule_BalancingTag
|
|
|
TargetTag isRoutingRule_TargetTag `protobuf_oneof:"target_tag"`
|
|
|
@@ -467,74 +475,70 @@ type RoutingRule struct {
|
|
|
Domain []*Domain `protobuf:"bytes,2,rep,name=domain,proto3" json:"domain,omitempty"`
|
|
|
// List of CIDRs for target IP address matching.
|
|
|
// Deprecated. Use geoip below.
|
|
|
- Cidr []*CIDR `protobuf:"bytes,3,rep,name=cidr,proto3" json:"cidr,omitempty"` // Deprecated: Do not use.
|
|
|
+ //
|
|
|
+ // Deprecated: Do not use.
|
|
|
+ Cidr []*CIDR `protobuf:"bytes,3,rep,name=cidr,proto3" json:"cidr,omitempty"`
|
|
|
// List of GeoIPs for target IP address matching. If this entry exists, the cidr above will have no effect.
|
|
|
// GeoIP fields with the same country code are supposed to contain exactly same content. They will be merged during runtime.
|
|
|
// For customized GeoIPs, please leave country code empty.
|
|
|
Geoip []*GeoIP `protobuf:"bytes,10,rep,name=geoip,proto3" json:"geoip,omitempty"`
|
|
|
// A range of port [from, to]. If the destination port is in this range, this rule takes effect.
|
|
|
// Deprecated. Use port_list.
|
|
|
- PortRange *net.PortRange `protobuf:"bytes,4,opt,name=port_range,json=portRange,proto3" json:"port_range,omitempty"` // Deprecated: Do not use.
|
|
|
+ //
|
|
|
+ // Deprecated: Do not use.
|
|
|
+ PortRange *net.PortRange `protobuf:"bytes,4,opt,name=port_range,json=portRange,proto3" json:"port_range,omitempty"`
|
|
|
// List of ports.
|
|
|
PortList *net.PortList `protobuf:"bytes,14,opt,name=port_list,json=portList,proto3" json:"port_list,omitempty"`
|
|
|
// List of networks. Deprecated. Use networks.
|
|
|
- NetworkList *net.NetworkList `protobuf:"bytes,5,opt,name=network_list,json=networkList,proto3" json:"network_list,omitempty"` // Deprecated: Do not use.
|
|
|
+ //
|
|
|
+ // Deprecated: Do not use.
|
|
|
+ NetworkList *net.NetworkList `protobuf:"bytes,5,opt,name=network_list,json=networkList,proto3" json:"network_list,omitempty"`
|
|
|
// List of networks for matching.
|
|
|
Networks []net.Network `protobuf:"varint,13,rep,packed,name=networks,proto3,enum=v2ray.core.common.net.Network" json:"networks,omitempty"`
|
|
|
// List of CIDRs for source IP address matching.
|
|
|
- SourceCidr []*CIDR `protobuf:"bytes,6,rep,name=source_cidr,json=sourceCidr,proto3" json:"source_cidr,omitempty"` // Deprecated: Do not use.
|
|
|
+ //
|
|
|
+ // Deprecated: Do not use.
|
|
|
+ SourceCidr []*CIDR `protobuf:"bytes,6,rep,name=source_cidr,json=sourceCidr,proto3" json:"source_cidr,omitempty"`
|
|
|
// List of GeoIPs for source IP address matching. If this entry exists, the source_cidr above will have no effect.
|
|
|
- SourceGeoip []*GeoIP `protobuf:"bytes,11,rep,name=source_geoip,json=sourceGeoip,proto3" json:"source_geoip,omitempty"`
|
|
|
- UserEmail []string `protobuf:"bytes,7,rep,name=user_email,json=userEmail,proto3" json:"user_email,omitempty"`
|
|
|
- InboundTag []string `protobuf:"bytes,8,rep,name=inbound_tag,json=inboundTag,proto3" json:"inbound_tag,omitempty"`
|
|
|
- Protocol []string `protobuf:"bytes,9,rep,name=protocol,proto3" json:"protocol,omitempty"`
|
|
|
- Attributes string `protobuf:"bytes,15,opt,name=attributes,proto3" json:"attributes,omitempty"`
|
|
|
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
- XXX_unrecognized []byte `json:"-"`
|
|
|
- XXX_sizecache int32 `json:"-"`
|
|
|
-}
|
|
|
-
|
|
|
-func (m *RoutingRule) Reset() { *m = RoutingRule{} }
|
|
|
-func (m *RoutingRule) String() string { return proto.CompactTextString(m) }
|
|
|
-func (*RoutingRule) ProtoMessage() {}
|
|
|
-func (*RoutingRule) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_6b1608360690c5fc, []int{6}
|
|
|
+ SourceGeoip []*GeoIP `protobuf:"bytes,11,rep,name=source_geoip,json=sourceGeoip,proto3" json:"source_geoip,omitempty"`
|
|
|
+ UserEmail []string `protobuf:"bytes,7,rep,name=user_email,json=userEmail,proto3" json:"user_email,omitempty"`
|
|
|
+ InboundTag []string `protobuf:"bytes,8,rep,name=inbound_tag,json=inboundTag,proto3" json:"inbound_tag,omitempty"`
|
|
|
+ Protocol []string `protobuf:"bytes,9,rep,name=protocol,proto3" json:"protocol,omitempty"`
|
|
|
+ Attributes string `protobuf:"bytes,15,opt,name=attributes,proto3" json:"attributes,omitempty"`
|
|
|
+}
|
|
|
+
|
|
|
+func (x *RoutingRule) Reset() {
|
|
|
+ *x = RoutingRule{}
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
+ mi := &file_v2ray_com_core_app_router_config_proto_msgTypes[6]
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
-func (m *RoutingRule) XXX_Unmarshal(b []byte) error {
|
|
|
- return xxx_messageInfo_RoutingRule.Unmarshal(m, b)
|
|
|
-}
|
|
|
-func (m *RoutingRule) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
- return xxx_messageInfo_RoutingRule.Marshal(b, m, deterministic)
|
|
|
-}
|
|
|
-func (m *RoutingRule) XXX_Merge(src proto.Message) {
|
|
|
- xxx_messageInfo_RoutingRule.Merge(m, src)
|
|
|
-}
|
|
|
-func (m *RoutingRule) XXX_Size() int {
|
|
|
- return xxx_messageInfo_RoutingRule.Size(m)
|
|
|
-}
|
|
|
-func (m *RoutingRule) XXX_DiscardUnknown() {
|
|
|
- xxx_messageInfo_RoutingRule.DiscardUnknown(m)
|
|
|
+func (x *RoutingRule) String() string {
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
}
|
|
|
|
|
|
-var xxx_messageInfo_RoutingRule proto.InternalMessageInfo
|
|
|
+func (*RoutingRule) ProtoMessage() {}
|
|
|
|
|
|
-type isRoutingRule_TargetTag interface {
|
|
|
- isRoutingRule_TargetTag()
|
|
|
-}
|
|
|
-
|
|
|
-type RoutingRule_Tag struct {
|
|
|
- Tag string `protobuf:"bytes,1,opt,name=tag,proto3,oneof"`
|
|
|
+func (x *RoutingRule) ProtoReflect() protoreflect.Message {
|
|
|
+ mi := &file_v2ray_com_core_app_router_config_proto_msgTypes[6]
|
|
|
+ if protoimpl.UnsafeEnabled && x != nil {
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ if ms.LoadMessageInfo() == nil {
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
+ return ms
|
|
|
+ }
|
|
|
+ return mi.MessageOf(x)
|
|
|
}
|
|
|
|
|
|
-type RoutingRule_BalancingTag struct {
|
|
|
- BalancingTag string `protobuf:"bytes,12,opt,name=balancing_tag,json=balancingTag,proto3,oneof"`
|
|
|
+// Deprecated: Use RoutingRule.ProtoReflect.Descriptor instead.
|
|
|
+func (*RoutingRule) Descriptor() ([]byte, []int) {
|
|
|
+ return file_v2ray_com_core_app_router_config_proto_rawDescGZIP(), []int{6}
|
|
|
}
|
|
|
|
|
|
-func (*RoutingRule_Tag) isRoutingRule_TargetTag() {}
|
|
|
-
|
|
|
-func (*RoutingRule_BalancingTag) isRoutingRule_TargetTag() {}
|
|
|
-
|
|
|
func (m *RoutingRule) GetTargetTag() isRoutingRule_TargetTag {
|
|
|
if m != nil {
|
|
|
return m.TargetTag
|
|
|
@@ -542,301 +546,684 @@ func (m *RoutingRule) GetTargetTag() isRoutingRule_TargetTag {
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
-func (m *RoutingRule) GetTag() string {
|
|
|
- if x, ok := m.GetTargetTag().(*RoutingRule_Tag); ok {
|
|
|
+func (x *RoutingRule) GetTag() string {
|
|
|
+ if x, ok := x.GetTargetTag().(*RoutingRule_Tag); ok {
|
|
|
return x.Tag
|
|
|
}
|
|
|
return ""
|
|
|
}
|
|
|
|
|
|
-func (m *RoutingRule) GetBalancingTag() string {
|
|
|
- if x, ok := m.GetTargetTag().(*RoutingRule_BalancingTag); ok {
|
|
|
+func (x *RoutingRule) GetBalancingTag() string {
|
|
|
+ if x, ok := x.GetTargetTag().(*RoutingRule_BalancingTag); ok {
|
|
|
return x.BalancingTag
|
|
|
}
|
|
|
return ""
|
|
|
}
|
|
|
|
|
|
-func (m *RoutingRule) GetDomain() []*Domain {
|
|
|
- if m != nil {
|
|
|
- return m.Domain
|
|
|
+func (x *RoutingRule) GetDomain() []*Domain {
|
|
|
+ if x != nil {
|
|
|
+ return x.Domain
|
|
|
}
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
// Deprecated: Do not use.
|
|
|
-func (m *RoutingRule) GetCidr() []*CIDR {
|
|
|
- if m != nil {
|
|
|
- return m.Cidr
|
|
|
+func (x *RoutingRule) GetCidr() []*CIDR {
|
|
|
+ if x != nil {
|
|
|
+ return x.Cidr
|
|
|
}
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
-func (m *RoutingRule) GetGeoip() []*GeoIP {
|
|
|
- if m != nil {
|
|
|
- return m.Geoip
|
|
|
+func (x *RoutingRule) GetGeoip() []*GeoIP {
|
|
|
+ if x != nil {
|
|
|
+ return x.Geoip
|
|
|
}
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
// Deprecated: Do not use.
|
|
|
-func (m *RoutingRule) GetPortRange() *net.PortRange {
|
|
|
- if m != nil {
|
|
|
- return m.PortRange
|
|
|
+func (x *RoutingRule) GetPortRange() *net.PortRange {
|
|
|
+ if x != nil {
|
|
|
+ return x.PortRange
|
|
|
}
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
-func (m *RoutingRule) GetPortList() *net.PortList {
|
|
|
- if m != nil {
|
|
|
- return m.PortList
|
|
|
+func (x *RoutingRule) GetPortList() *net.PortList {
|
|
|
+ if x != nil {
|
|
|
+ return x.PortList
|
|
|
}
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
// Deprecated: Do not use.
|
|
|
-func (m *RoutingRule) GetNetworkList() *net.NetworkList {
|
|
|
- if m != nil {
|
|
|
- return m.NetworkList
|
|
|
+func (x *RoutingRule) GetNetworkList() *net.NetworkList {
|
|
|
+ if x != nil {
|
|
|
+ return x.NetworkList
|
|
|
}
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
-func (m *RoutingRule) GetNetworks() []net.Network {
|
|
|
- if m != nil {
|
|
|
- return m.Networks
|
|
|
+func (x *RoutingRule) GetNetworks() []net.Network {
|
|
|
+ if x != nil {
|
|
|
+ return x.Networks
|
|
|
}
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
// Deprecated: Do not use.
|
|
|
-func (m *RoutingRule) GetSourceCidr() []*CIDR {
|
|
|
- if m != nil {
|
|
|
- return m.SourceCidr
|
|
|
+func (x *RoutingRule) GetSourceCidr() []*CIDR {
|
|
|
+ if x != nil {
|
|
|
+ return x.SourceCidr
|
|
|
}
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
-func (m *RoutingRule) GetSourceGeoip() []*GeoIP {
|
|
|
- if m != nil {
|
|
|
- return m.SourceGeoip
|
|
|
+func (x *RoutingRule) GetSourceGeoip() []*GeoIP {
|
|
|
+ if x != nil {
|
|
|
+ return x.SourceGeoip
|
|
|
}
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
-func (m *RoutingRule) GetUserEmail() []string {
|
|
|
- if m != nil {
|
|
|
- return m.UserEmail
|
|
|
+func (x *RoutingRule) GetUserEmail() []string {
|
|
|
+ if x != nil {
|
|
|
+ return x.UserEmail
|
|
|
}
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
-func (m *RoutingRule) GetInboundTag() []string {
|
|
|
- if m != nil {
|
|
|
- return m.InboundTag
|
|
|
+func (x *RoutingRule) GetInboundTag() []string {
|
|
|
+ if x != nil {
|
|
|
+ return x.InboundTag
|
|
|
}
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
-func (m *RoutingRule) GetProtocol() []string {
|
|
|
- if m != nil {
|
|
|
- return m.Protocol
|
|
|
+func (x *RoutingRule) GetProtocol() []string {
|
|
|
+ if x != nil {
|
|
|
+ return x.Protocol
|
|
|
}
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
-func (m *RoutingRule) GetAttributes() string {
|
|
|
- if m != nil {
|
|
|
- return m.Attributes
|
|
|
+func (x *RoutingRule) GetAttributes() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.Attributes
|
|
|
}
|
|
|
return ""
|
|
|
}
|
|
|
|
|
|
-// XXX_OneofWrappers is for the internal use of the proto package.
|
|
|
-func (*RoutingRule) XXX_OneofWrappers() []interface{} {
|
|
|
- return []interface{}{
|
|
|
- (*RoutingRule_Tag)(nil),
|
|
|
- (*RoutingRule_BalancingTag)(nil),
|
|
|
- }
|
|
|
+type isRoutingRule_TargetTag interface {
|
|
|
+ isRoutingRule_TargetTag()
|
|
|
}
|
|
|
|
|
|
-type BalancingRule struct {
|
|
|
- Tag string `protobuf:"bytes,1,opt,name=tag,proto3" json:"tag,omitempty"`
|
|
|
- OutboundSelector []string `protobuf:"bytes,2,rep,name=outbound_selector,json=outboundSelector,proto3" json:"outbound_selector,omitempty"`
|
|
|
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
- XXX_unrecognized []byte `json:"-"`
|
|
|
- XXX_sizecache int32 `json:"-"`
|
|
|
+type RoutingRule_Tag struct {
|
|
|
+ // Tag of outbound that this rule is pointing to.
|
|
|
+ Tag string `protobuf:"bytes,1,opt,name=tag,proto3,oneof"`
|
|
|
}
|
|
|
|
|
|
-func (m *BalancingRule) Reset() { *m = BalancingRule{} }
|
|
|
-func (m *BalancingRule) String() string { return proto.CompactTextString(m) }
|
|
|
-func (*BalancingRule) ProtoMessage() {}
|
|
|
-func (*BalancingRule) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_6b1608360690c5fc, []int{7}
|
|
|
+type RoutingRule_BalancingTag struct {
|
|
|
+ // Tag of routing balancer.
|
|
|
+ BalancingTag string `protobuf:"bytes,12,opt,name=balancing_tag,json=balancingTag,proto3,oneof"`
|
|
|
}
|
|
|
|
|
|
-func (m *BalancingRule) XXX_Unmarshal(b []byte) error {
|
|
|
- return xxx_messageInfo_BalancingRule.Unmarshal(m, b)
|
|
|
-}
|
|
|
-func (m *BalancingRule) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
- return xxx_messageInfo_BalancingRule.Marshal(b, m, deterministic)
|
|
|
+func (*RoutingRule_Tag) isRoutingRule_TargetTag() {}
|
|
|
+
|
|
|
+func (*RoutingRule_BalancingTag) isRoutingRule_TargetTag() {}
|
|
|
+
|
|
|
+type BalancingRule struct {
|
|
|
+ state protoimpl.MessageState
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
+
|
|
|
+ Tag string `protobuf:"bytes,1,opt,name=tag,proto3" json:"tag,omitempty"`
|
|
|
+ OutboundSelector []string `protobuf:"bytes,2,rep,name=outbound_selector,json=outboundSelector,proto3" json:"outbound_selector,omitempty"`
|
|
|
}
|
|
|
-func (m *BalancingRule) XXX_Merge(src proto.Message) {
|
|
|
- xxx_messageInfo_BalancingRule.Merge(m, src)
|
|
|
+
|
|
|
+func (x *BalancingRule) Reset() {
|
|
|
+ *x = BalancingRule{}
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
+ mi := &file_v2ray_com_core_app_router_config_proto_msgTypes[7]
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
}
|
|
|
-func (m *BalancingRule) XXX_Size() int {
|
|
|
- return xxx_messageInfo_BalancingRule.Size(m)
|
|
|
+
|
|
|
+func (x *BalancingRule) String() string {
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
}
|
|
|
-func (m *BalancingRule) XXX_DiscardUnknown() {
|
|
|
- xxx_messageInfo_BalancingRule.DiscardUnknown(m)
|
|
|
+
|
|
|
+func (*BalancingRule) ProtoMessage() {}
|
|
|
+
|
|
|
+func (x *BalancingRule) ProtoReflect() protoreflect.Message {
|
|
|
+ mi := &file_v2ray_com_core_app_router_config_proto_msgTypes[7]
|
|
|
+ if protoimpl.UnsafeEnabled && x != nil {
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ if ms.LoadMessageInfo() == nil {
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
+ return ms
|
|
|
+ }
|
|
|
+ return mi.MessageOf(x)
|
|
|
}
|
|
|
|
|
|
-var xxx_messageInfo_BalancingRule proto.InternalMessageInfo
|
|
|
+// Deprecated: Use BalancingRule.ProtoReflect.Descriptor instead.
|
|
|
+func (*BalancingRule) Descriptor() ([]byte, []int) {
|
|
|
+ return file_v2ray_com_core_app_router_config_proto_rawDescGZIP(), []int{7}
|
|
|
+}
|
|
|
|
|
|
-func (m *BalancingRule) GetTag() string {
|
|
|
- if m != nil {
|
|
|
- return m.Tag
|
|
|
+func (x *BalancingRule) GetTag() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.Tag
|
|
|
}
|
|
|
return ""
|
|
|
}
|
|
|
|
|
|
-func (m *BalancingRule) GetOutboundSelector() []string {
|
|
|
- if m != nil {
|
|
|
- return m.OutboundSelector
|
|
|
+func (x *BalancingRule) GetOutboundSelector() []string {
|
|
|
+ if x != nil {
|
|
|
+ return x.OutboundSelector
|
|
|
}
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
type Config struct {
|
|
|
- DomainStrategy Config_DomainStrategy `protobuf:"varint,1,opt,name=domain_strategy,json=domainStrategy,proto3,enum=v2ray.core.app.router.Config_DomainStrategy" json:"domain_strategy,omitempty"`
|
|
|
- Rule []*RoutingRule `protobuf:"bytes,2,rep,name=rule,proto3" json:"rule,omitempty"`
|
|
|
- BalancingRule []*BalancingRule `protobuf:"bytes,3,rep,name=balancing_rule,json=balancingRule,proto3" json:"balancing_rule,omitempty"`
|
|
|
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
|
- XXX_unrecognized []byte `json:"-"`
|
|
|
- XXX_sizecache int32 `json:"-"`
|
|
|
+ state protoimpl.MessageState
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
+
|
|
|
+ DomainStrategy Config_DomainStrategy `protobuf:"varint,1,opt,name=domain_strategy,json=domainStrategy,proto3,enum=v2ray.core.app.router.Config_DomainStrategy" json:"domain_strategy,omitempty"`
|
|
|
+ Rule []*RoutingRule `protobuf:"bytes,2,rep,name=rule,proto3" json:"rule,omitempty"`
|
|
|
+ BalancingRule []*BalancingRule `protobuf:"bytes,3,rep,name=balancing_rule,json=balancingRule,proto3" json:"balancing_rule,omitempty"`
|
|
|
}
|
|
|
|
|
|
-func (m *Config) Reset() { *m = Config{} }
|
|
|
-func (m *Config) String() string { return proto.CompactTextString(m) }
|
|
|
-func (*Config) ProtoMessage() {}
|
|
|
+func (x *Config) Reset() {
|
|
|
+ *x = Config{}
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
+ mi := &file_v2ray_com_core_app_router_config_proto_msgTypes[8]
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+func (x *Config) String() string {
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
+}
|
|
|
+
|
|
|
+func (*Config) ProtoMessage() {}
|
|
|
+
|
|
|
+func (x *Config) ProtoReflect() protoreflect.Message {
|
|
|
+ mi := &file_v2ray_com_core_app_router_config_proto_msgTypes[8]
|
|
|
+ if protoimpl.UnsafeEnabled && x != nil {
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ if ms.LoadMessageInfo() == nil {
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
+ return ms
|
|
|
+ }
|
|
|
+ return mi.MessageOf(x)
|
|
|
+}
|
|
|
+
|
|
|
+// Deprecated: Use Config.ProtoReflect.Descriptor instead.
|
|
|
func (*Config) Descriptor() ([]byte, []int) {
|
|
|
- return fileDescriptor_6b1608360690c5fc, []int{8}
|
|
|
+ return file_v2ray_com_core_app_router_config_proto_rawDescGZIP(), []int{8}
|
|
|
+}
|
|
|
+
|
|
|
+func (x *Config) GetDomainStrategy() Config_DomainStrategy {
|
|
|
+ if x != nil {
|
|
|
+ return x.DomainStrategy
|
|
|
+ }
|
|
|
+ return Config_AsIs
|
|
|
}
|
|
|
|
|
|
-func (m *Config) XXX_Unmarshal(b []byte) error {
|
|
|
- return xxx_messageInfo_Config.Unmarshal(m, b)
|
|
|
+func (x *Config) GetRule() []*RoutingRule {
|
|
|
+ if x != nil {
|
|
|
+ return x.Rule
|
|
|
+ }
|
|
|
+ return nil
|
|
|
}
|
|
|
-func (m *Config) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
|
- return xxx_messageInfo_Config.Marshal(b, m, deterministic)
|
|
|
+
|
|
|
+func (x *Config) GetBalancingRule() []*BalancingRule {
|
|
|
+ if x != nil {
|
|
|
+ return x.BalancingRule
|
|
|
+ }
|
|
|
+ return nil
|
|
|
}
|
|
|
-func (m *Config) XXX_Merge(src proto.Message) {
|
|
|
- xxx_messageInfo_Config.Merge(m, src)
|
|
|
+
|
|
|
+type Domain_Attribute struct {
|
|
|
+ state protoimpl.MessageState
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
+
|
|
|
+ Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
|
|
|
+ // Types that are assignable to TypedValue:
|
|
|
+ // *Domain_Attribute_BoolValue
|
|
|
+ // *Domain_Attribute_IntValue
|
|
|
+ TypedValue isDomain_Attribute_TypedValue `protobuf_oneof:"typed_value"`
|
|
|
}
|
|
|
-func (m *Config) XXX_Size() int {
|
|
|
- return xxx_messageInfo_Config.Size(m)
|
|
|
+
|
|
|
+func (x *Domain_Attribute) Reset() {
|
|
|
+ *x = Domain_Attribute{}
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
+ mi := &file_v2ray_com_core_app_router_config_proto_msgTypes[9]
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
}
|
|
|
-func (m *Config) XXX_DiscardUnknown() {
|
|
|
- xxx_messageInfo_Config.DiscardUnknown(m)
|
|
|
+
|
|
|
+func (x *Domain_Attribute) String() string {
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
}
|
|
|
|
|
|
-var xxx_messageInfo_Config proto.InternalMessageInfo
|
|
|
+func (*Domain_Attribute) ProtoMessage() {}
|
|
|
|
|
|
-func (m *Config) GetDomainStrategy() Config_DomainStrategy {
|
|
|
- if m != nil {
|
|
|
- return m.DomainStrategy
|
|
|
+func (x *Domain_Attribute) ProtoReflect() protoreflect.Message {
|
|
|
+ mi := &file_v2ray_com_core_app_router_config_proto_msgTypes[9]
|
|
|
+ if protoimpl.UnsafeEnabled && x != nil {
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ if ms.LoadMessageInfo() == nil {
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
+ return ms
|
|
|
}
|
|
|
- return Config_AsIs
|
|
|
+ return mi.MessageOf(x)
|
|
|
}
|
|
|
|
|
|
-func (m *Config) GetRule() []*RoutingRule {
|
|
|
- if m != nil {
|
|
|
- return m.Rule
|
|
|
+// Deprecated: Use Domain_Attribute.ProtoReflect.Descriptor instead.
|
|
|
+func (*Domain_Attribute) Descriptor() ([]byte, []int) {
|
|
|
+ return file_v2ray_com_core_app_router_config_proto_rawDescGZIP(), []int{0, 0}
|
|
|
+}
|
|
|
+
|
|
|
+func (x *Domain_Attribute) GetKey() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.Key
|
|
|
}
|
|
|
- return nil
|
|
|
+ return ""
|
|
|
}
|
|
|
|
|
|
-func (m *Config) GetBalancingRule() []*BalancingRule {
|
|
|
+func (m *Domain_Attribute) GetTypedValue() isDomain_Attribute_TypedValue {
|
|
|
if m != nil {
|
|
|
- return m.BalancingRule
|
|
|
+ return m.TypedValue
|
|
|
}
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
-func init() {
|
|
|
- proto.RegisterEnum("v2ray.core.app.router.Domain_Type", Domain_Type_name, Domain_Type_value)
|
|
|
- proto.RegisterEnum("v2ray.core.app.router.Config_DomainStrategy", Config_DomainStrategy_name, Config_DomainStrategy_value)
|
|
|
- proto.RegisterType((*Domain)(nil), "v2ray.core.app.router.Domain")
|
|
|
- proto.RegisterType((*Domain_Attribute)(nil), "v2ray.core.app.router.Domain.Attribute")
|
|
|
- proto.RegisterType((*CIDR)(nil), "v2ray.core.app.router.CIDR")
|
|
|
- proto.RegisterType((*GeoIP)(nil), "v2ray.core.app.router.GeoIP")
|
|
|
- proto.RegisterType((*GeoIPList)(nil), "v2ray.core.app.router.GeoIPList")
|
|
|
- proto.RegisterType((*GeoSite)(nil), "v2ray.core.app.router.GeoSite")
|
|
|
- proto.RegisterType((*GeoSiteList)(nil), "v2ray.core.app.router.GeoSiteList")
|
|
|
- proto.RegisterType((*RoutingRule)(nil), "v2ray.core.app.router.RoutingRule")
|
|
|
- proto.RegisterType((*BalancingRule)(nil), "v2ray.core.app.router.BalancingRule")
|
|
|
- proto.RegisterType((*Config)(nil), "v2ray.core.app.router.Config")
|
|
|
-}
|
|
|
-
|
|
|
-func init() {
|
|
|
- proto.RegisterFile("v2ray.com/core/app/router/config.proto", fileDescriptor_6b1608360690c5fc)
|
|
|
-}
|
|
|
-
|
|
|
-var fileDescriptor_6b1608360690c5fc = []byte{
|
|
|
- // 910 bytes of a gzipped FileDescriptorProto
|
|
|
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x55, 0x5f, 0x8f, 0xdb, 0x44,
|
|
|
- 0x10, 0x3f, 0xdb, 0x49, 0x1a, 0x8f, 0x93, 0xd4, 0xac, 0x28, 0x32, 0x07, 0xd7, 0x0b, 0x56, 0xa1,
|
|
|
- 0x91, 0x40, 0x8e, 0x94, 0x02, 0x0f, 0x08, 0x54, 0x2e, 0xb9, 0x72, 0x17, 0x01, 0xc7, 0x69, 0xaf,
|
|
|
- 0xed, 0x03, 0x3c, 0x44, 0x8e, 0xb3, 0x67, 0xac, 0x3a, 0xbb, 0xab, 0xf5, 0xba, 0x34, 0x5f, 0x09,
|
|
|
- 0x89, 0xcf, 0xc0, 0x47, 0x03, 0xed, 0x9f, 0x24, 0x17, 0x68, 0x8e, 0x13, 0x6f, 0x3b, 0xb3, 0xbf,
|
|
|
- 0xf9, 0xed, 0x6f, 0x67, 0x76, 0x66, 0xe1, 0x93, 0xd7, 0x23, 0x91, 0xae, 0x92, 0x8c, 0x2d, 0x87,
|
|
|
- 0x19, 0x13, 0x64, 0x98, 0x72, 0x3e, 0x14, 0xac, 0x96, 0x44, 0x0c, 0x33, 0x46, 0xaf, 0x8b, 0x3c,
|
|
|
- 0xe1, 0x82, 0x49, 0x86, 0x1e, 0xac, 0x71, 0x82, 0x24, 0x29, 0xe7, 0x89, 0xc1, 0x1c, 0x3e, 0xfa,
|
|
|
- 0x47, 0x78, 0xc6, 0x96, 0x4b, 0x46, 0x87, 0x94, 0xc8, 0x21, 0x67, 0x42, 0x9a, 0xe0, 0xc3, 0xc7,
|
|
|
- 0xfb, 0x51, 0x94, 0xc8, 0xdf, 0x98, 0x78, 0x65, 0x80, 0xf1, 0x9f, 0x2e, 0xb4, 0x4e, 0xd9, 0x32,
|
|
|
- 0x2d, 0x28, 0xfa, 0x12, 0x1a, 0x72, 0xc5, 0x49, 0xe4, 0xf4, 0x9d, 0x41, 0x6f, 0x14, 0x27, 0x6f,
|
|
|
- 0x3d, 0x3f, 0x31, 0xe0, 0xe4, 0xf9, 0x8a, 0x13, 0xac, 0xf1, 0xe8, 0x5d, 0x68, 0xbe, 0x4e, 0xcb,
|
|
|
- 0x9a, 0x44, 0x6e, 0xdf, 0x19, 0xf8, 0xd8, 0x18, 0xe8, 0x19, 0xf8, 0xa9, 0x94, 0xa2, 0x98, 0xd7,
|
|
|
- 0x92, 0x44, 0x5e, 0xdf, 0x1b, 0x04, 0xa3, 0xc7, 0xb7, 0x53, 0x9e, 0xac, 0xe1, 0x78, 0x1b, 0x79,
|
|
|
- 0x58, 0x82, 0xbf, 0xf1, 0xa3, 0x10, 0xbc, 0x57, 0x64, 0xa5, 0x05, 0xfa, 0x58, 0x2d, 0xd1, 0x31,
|
|
|
- 0xc0, 0x9c, 0xb1, 0x72, 0xb6, 0x15, 0xd0, 0x3e, 0x3f, 0xc0, 0xbe, 0xf2, 0xbd, 0xd4, 0x32, 0x8e,
|
|
|
- 0xc0, 0x2f, 0xa8, 0xb4, 0xfb, 0x5e, 0xdf, 0x19, 0x78, 0xe7, 0x07, 0xb8, 0x5d, 0x50, 0xa9, 0xb7,
|
|
|
- 0xc7, 0x5d, 0x08, 0xd4, 0x1d, 0x16, 0x06, 0x10, 0x8f, 0xa0, 0xa1, 0x2e, 0x86, 0x7c, 0x68, 0x5e,
|
|
|
- 0x96, 0x69, 0x41, 0xc3, 0x03, 0xb5, 0xc4, 0x24, 0x27, 0x6f, 0x42, 0x07, 0xc1, 0x3a, 0x55, 0xa1,
|
|
|
- 0x8b, 0xda, 0xd0, 0xf8, 0xae, 0x2e, 0xcb, 0xd0, 0x8b, 0x13, 0x68, 0x4c, 0xa6, 0xa7, 0x18, 0xf5,
|
|
|
- 0xc0, 0x2d, 0xb8, 0xd6, 0xd6, 0xc1, 0x6e, 0xc1, 0xd1, 0x7b, 0xd0, 0xe2, 0x82, 0x5c, 0x17, 0x6f,
|
|
|
- 0xb4, 0xac, 0x2e, 0xb6, 0x56, 0xfc, 0x0b, 0x34, 0xcf, 0x08, 0x9b, 0x5e, 0xa2, 0x8f, 0xa0, 0x93,
|
|
|
- 0xb1, 0x9a, 0x4a, 0xb1, 0x9a, 0x65, 0x6c, 0x41, 0xec, 0xb5, 0x02, 0xeb, 0x9b, 0xb0, 0x05, 0x41,
|
|
|
- 0x43, 0x68, 0x64, 0xc5, 0x42, 0x44, 0xae, 0xce, 0xdf, 0x07, 0x7b, 0xf2, 0xa7, 0x8e, 0xc7, 0x1a,
|
|
|
- 0x18, 0x3f, 0x05, 0x5f, 0x93, 0xff, 0x50, 0x54, 0x12, 0x8d, 0xa0, 0x49, 0x14, 0x55, 0xe4, 0xe8,
|
|
|
- 0xf0, 0x0f, 0xf7, 0x84, 0xeb, 0x00, 0x6c, 0xa0, 0x71, 0x06, 0xf7, 0xce, 0x08, 0xbb, 0x2a, 0x24,
|
|
|
- 0xb9, 0x8b, 0xbe, 0x2f, 0xa0, 0xb5, 0xd0, 0x19, 0xb1, 0x0a, 0x8f, 0x6e, 0xad, 0x30, 0xb6, 0xe0,
|
|
|
- 0x78, 0x02, 0x81, 0x3d, 0x44, 0xeb, 0xfc, 0x7c, 0x57, 0xe7, 0xc3, 0xfd, 0x3a, 0x55, 0xc8, 0x5a,
|
|
|
- 0xe9, 0x5f, 0x4d, 0x08, 0x30, 0xab, 0x65, 0x41, 0x73, 0x5c, 0x97, 0x04, 0x21, 0xf0, 0x64, 0x9a,
|
|
|
- 0x1b, 0x95, 0xe7, 0x07, 0x58, 0x19, 0xe8, 0x63, 0xe8, 0xce, 0xd3, 0x32, 0xa5, 0x59, 0x41, 0xf3,
|
|
|
- 0x99, 0xda, 0xed, 0xd8, 0xdd, 0xce, 0xc6, 0xfd, 0x3c, 0xcd, 0xff, 0xe7, 0x35, 0xd0, 0x13, 0x5b,
|
|
|
- 0x1d, 0xef, 0x3f, 0xab, 0x33, 0x76, 0x23, 0xc7, 0x54, 0x48, 0x15, 0x25, 0x27, 0xac, 0xe0, 0x11,
|
|
|
- 0xdc, 0xa5, 0x28, 0x1a, 0x8a, 0x26, 0x00, 0xaa, 0xb7, 0x67, 0x22, 0xa5, 0x39, 0x89, 0x1a, 0x7d,
|
|
|
- 0x67, 0x10, 0x8c, 0xfa, 0x37, 0x03, 0x4d, 0x7b, 0x27, 0x94, 0xc8, 0xe4, 0x92, 0x09, 0x89, 0x15,
|
|
|
- 0x4e, 0x9f, 0xe9, 0xf3, 0xb5, 0x89, 0xbe, 0x06, 0x6d, 0xcc, 0xca, 0xa2, 0x92, 0x51, 0x4f, 0x73,
|
|
|
- 0x1c, 0xdf, 0xc2, 0xa1, 0x2a, 0x83, 0xdb, 0xdc, 0xae, 0xd0, 0x14, 0x3a, 0x76, 0x70, 0x18, 0x82,
|
|
|
- 0xa6, 0x26, 0x88, 0xf7, 0x10, 0x5c, 0x18, 0xa8, 0x8a, 0xd4, 0x32, 0x02, 0xba, 0x75, 0xa0, 0xaf,
|
|
|
- 0xa0, 0x6d, 0xcd, 0x2a, 0xea, 0xf6, 0xbd, 0x41, 0x6f, 0xb7, 0xe2, 0xff, 0xa6, 0xc1, 0x1b, 0x3c,
|
|
|
- 0xfa, 0x16, 0x82, 0x8a, 0xd5, 0x22, 0x23, 0x33, 0x9d, 0xf9, 0xd6, 0xdd, 0x32, 0x0f, 0x26, 0x66,
|
|
|
- 0xa2, 0xf2, 0xff, 0x14, 0x3a, 0x96, 0xc1, 0x94, 0x21, 0xb8, 0x43, 0x19, 0xec, 0x99, 0x67, 0xba,
|
|
|
- 0x18, 0x47, 0x00, 0x75, 0x45, 0xc4, 0x8c, 0x2c, 0xd3, 0xa2, 0x8c, 0xee, 0xf5, 0xbd, 0x81, 0x8f,
|
|
|
- 0x7d, 0xe5, 0x79, 0xa6, 0x1c, 0xe8, 0x18, 0x82, 0x82, 0xce, 0x59, 0x4d, 0x17, 0xfa, 0xc1, 0xb5,
|
|
|
- 0xf5, 0x3e, 0x58, 0x97, 0x7a, 0x6c, 0x87, 0xd0, 0xd6, 0xa3, 0x37, 0x63, 0x65, 0xe4, 0xeb, 0xdd,
|
|
|
- 0x8d, 0x8d, 0x1e, 0x02, 0x6c, 0x46, 0x5f, 0x15, 0xdd, 0xd7, 0x0d, 0x77, 0xc3, 0x33, 0xee, 0x00,
|
|
|
- 0xc8, 0x54, 0xe4, 0x44, 0x2a, 0xee, 0xf8, 0x02, 0xba, 0xe3, 0xf5, 0x33, 0xd6, 0x2d, 0x10, 0xde,
|
|
|
- 0x68, 0x01, 0xd3, 0x00, 0x9f, 0xc2, 0x3b, 0xac, 0x96, 0x46, 0x4e, 0x45, 0x4a, 0x92, 0x49, 0x66,
|
|
|
- 0xa6, 0x89, 0x8f, 0xc3, 0xf5, 0xc6, 0x95, 0xf5, 0xc7, 0x7f, 0xb8, 0xd0, 0x9a, 0xe8, 0x2f, 0x08,
|
|
|
- 0xbd, 0x80, 0xfb, 0xe6, 0x91, 0xcf, 0x2a, 0x29, 0x52, 0x49, 0xf2, 0x95, 0xfd, 0x16, 0x3e, 0xdb,
|
|
|
- 0x97, 0x6b, 0xf3, 0x75, 0x99, 0x0e, 0xb9, 0xb2, 0x31, 0xb8, 0xb7, 0xd8, 0xb1, 0xd5, 0x17, 0x23,
|
|
|
- 0xea, 0x92, 0xd8, 0x36, 0xdb, 0xf7, 0xc5, 0xdc, 0xe8, 0x6a, 0xac, 0xf1, 0xe8, 0x7b, 0xe8, 0x6d,
|
|
|
- 0xfb, 0x58, 0x33, 0x98, 0x9e, 0x7b, 0xb4, 0x87, 0x61, 0x27, 0x2d, 0x78, 0x3b, 0x03, 0x94, 0x19,
|
|
|
- 0x9f, 0x41, 0x6f, 0x57, 0xa6, 0x1a, 0xe6, 0x27, 0xd5, 0xb4, 0x32, 0xd3, 0xfe, 0x45, 0x45, 0xa6,
|
|
|
- 0x3c, 0x74, 0x50, 0x08, 0x9d, 0x29, 0x9f, 0x5e, 0x5f, 0x30, 0xfa, 0x63, 0x2a, 0xb3, 0x5f, 0x43,
|
|
|
- 0x17, 0xf5, 0x00, 0xa6, 0xfc, 0x27, 0x7a, 0x4a, 0x96, 0x29, 0x5d, 0x84, 0xde, 0xf8, 0x1b, 0x78,
|
|
|
- 0x3f, 0x63, 0xcb, 0xb7, 0x4b, 0xb8, 0x74, 0x7e, 0x6e, 0x99, 0xd5, 0xef, 0xee, 0x83, 0x97, 0x23,
|
|
|
- 0x9c, 0xae, 0x92, 0x89, 0x42, 0x9c, 0x70, 0xae, 0xef, 0x47, 0xc4, 0xbc, 0xa5, 0xcb, 0xfe, 0xe4,
|
|
|
- 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0x7b, 0x3e, 0x38, 0x1b, 0x11, 0x08, 0x00, 0x00,
|
|
|
+func (x *Domain_Attribute) GetBoolValue() bool {
|
|
|
+ if x, ok := x.GetTypedValue().(*Domain_Attribute_BoolValue); ok {
|
|
|
+ return x.BoolValue
|
|
|
+ }
|
|
|
+ return false
|
|
|
+}
|
|
|
+
|
|
|
+func (x *Domain_Attribute) GetIntValue() int64 {
|
|
|
+ if x, ok := x.GetTypedValue().(*Domain_Attribute_IntValue); ok {
|
|
|
+ return x.IntValue
|
|
|
+ }
|
|
|
+ return 0
|
|
|
+}
|
|
|
+
|
|
|
+type isDomain_Attribute_TypedValue interface {
|
|
|
+ isDomain_Attribute_TypedValue()
|
|
|
+}
|
|
|
+
|
|
|
+type Domain_Attribute_BoolValue struct {
|
|
|
+ BoolValue bool `protobuf:"varint,2,opt,name=bool_value,json=boolValue,proto3,oneof"`
|
|
|
+}
|
|
|
+
|
|
|
+type Domain_Attribute_IntValue struct {
|
|
|
+ IntValue int64 `protobuf:"varint,3,opt,name=int_value,json=intValue,proto3,oneof"`
|
|
|
+}
|
|
|
+
|
|
|
+func (*Domain_Attribute_BoolValue) isDomain_Attribute_TypedValue() {}
|
|
|
+
|
|
|
+func (*Domain_Attribute_IntValue) isDomain_Attribute_TypedValue() {}
|
|
|
+
|
|
|
+var File_v2ray_com_core_app_router_config_proto protoreflect.FileDescriptor
|
|
|
+
|
|
|
+var file_v2ray_com_core_app_router_config_proto_rawDesc = []byte{
|
|
|
+ 0x0a, 0x26, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x65,
|
|
|
+ 0x2f, 0x61, 0x70, 0x70, 0x2f, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x6e, 0x66,
|
|
|
+ 0x69, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x15, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e,
|
|
|
+ 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x72, 0x1a,
|
|
|
+ 0x24, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x65, 0x2f,
|
|
|
+ 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x6e, 0x65, 0x74, 0x2f, 0x70, 0x6f, 0x72, 0x74, 0x2e,
|
|
|
+ 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x27, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x6d,
|
|
|
+ 0x2f, 0x63, 0x6f, 0x72, 0x65, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x6e, 0x65, 0x74,
|
|
|
+ 0x2f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xbf,
|
|
|
+ 0x02, 0x0a, 0x06, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x36, 0x0a, 0x04, 0x74, 0x79, 0x70,
|
|
|
+ 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x22, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e,
|
|
|
+ 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x72, 0x2e,
|
|
|
+ 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70,
|
|
|
+ 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
|
|
|
+ 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x45, 0x0a, 0x09, 0x61, 0x74, 0x74, 0x72, 0x69,
|
|
|
+ 0x62, 0x75, 0x74, 0x65, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x76, 0x32, 0x72,
|
|
|
+ 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x72, 0x6f, 0x75, 0x74,
|
|
|
+ 0x65, 0x72, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62,
|
|
|
+ 0x75, 0x74, 0x65, 0x52, 0x09, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x1a, 0x6c,
|
|
|
+ 0x0a, 0x09, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6b,
|
|
|
+ 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x1f, 0x0a,
|
|
|
+ 0x0a, 0x62, 0x6f, 0x6f, 0x6c, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
|
|
|
+ 0x08, 0x48, 0x00, 0x52, 0x09, 0x62, 0x6f, 0x6f, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x1d,
|
|
|
+ 0x0a, 0x09, 0x69, 0x6e, 0x74, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
|
|
|
+ 0x03, 0x48, 0x00, 0x52, 0x08, 0x69, 0x6e, 0x74, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x0d, 0x0a,
|
|
|
+ 0x0b, 0x74, 0x79, 0x70, 0x65, 0x64, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x32, 0x0a, 0x04,
|
|
|
+ 0x54, 0x79, 0x70, 0x65, 0x12, 0x09, 0x0a, 0x05, 0x50, 0x6c, 0x61, 0x69, 0x6e, 0x10, 0x00, 0x12,
|
|
|
+ 0x09, 0x0a, 0x05, 0x52, 0x65, 0x67, 0x65, 0x78, 0x10, 0x01, 0x12, 0x0a, 0x0a, 0x06, 0x44, 0x6f,
|
|
|
+ 0x6d, 0x61, 0x69, 0x6e, 0x10, 0x02, 0x12, 0x08, 0x0a, 0x04, 0x46, 0x75, 0x6c, 0x6c, 0x10, 0x03,
|
|
|
+ 0x22, 0x2e, 0x0a, 0x04, 0x43, 0x49, 0x44, 0x52, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x70, 0x18, 0x01,
|
|
|
+ 0x20, 0x01, 0x28, 0x0c, 0x52, 0x02, 0x69, 0x70, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x72, 0x65, 0x66,
|
|
|
+ 0x69, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x70, 0x72, 0x65, 0x66, 0x69, 0x78,
|
|
|
+ 0x22, 0x5b, 0x0a, 0x05, 0x47, 0x65, 0x6f, 0x49, 0x50, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6f, 0x75,
|
|
|
+ 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
|
+ 0x0b, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x2f, 0x0a, 0x04,
|
|
|
+ 0x63, 0x69, 0x64, 0x72, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x76, 0x32, 0x72,
|
|
|
+ 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x72, 0x6f, 0x75, 0x74,
|
|
|
+ 0x65, 0x72, 0x2e, 0x43, 0x49, 0x44, 0x52, 0x52, 0x04, 0x63, 0x69, 0x64, 0x72, 0x22, 0x3f, 0x0a,
|
|
|
+ 0x09, 0x47, 0x65, 0x6f, 0x49, 0x50, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x32, 0x0a, 0x05, 0x65, 0x6e,
|
|
|
+ 0x74, 0x72, 0x79, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x76, 0x32, 0x72, 0x61,
|
|
|
+ 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x72, 0x6f, 0x75, 0x74, 0x65,
|
|
|
+ 0x72, 0x2e, 0x47, 0x65, 0x6f, 0x49, 0x50, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x22, 0x63,
|
|
|
+ 0x0a, 0x07, 0x47, 0x65, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6f, 0x75,
|
|
|
+ 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
|
+ 0x0b, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x35, 0x0a, 0x06,
|
|
|
+ 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x76,
|
|
|
+ 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x72, 0x6f,
|
|
|
+ 0x75, 0x74, 0x65, 0x72, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x52, 0x06, 0x64, 0x6f, 0x6d,
|
|
|
+ 0x61, 0x69, 0x6e, 0x22, 0x43, 0x0a, 0x0b, 0x47, 0x65, 0x6f, 0x53, 0x69, 0x74, 0x65, 0x4c, 0x69,
|
|
|
+ 0x73, 0x74, 0x12, 0x34, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x01, 0x20, 0x03, 0x28,
|
|
|
+ 0x0b, 0x32, 0x1e, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61,
|
|
|
+ 0x70, 0x70, 0x2e, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x6f, 0x53, 0x69, 0x74,
|
|
|
+ 0x65, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x72, 0x79, 0x22, 0xff, 0x05, 0x0a, 0x0b, 0x52, 0x6f, 0x75,
|
|
|
+ 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x12, 0x12, 0x0a, 0x03, 0x74, 0x61, 0x67, 0x18,
|
|
|
+ 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x03, 0x74, 0x61, 0x67, 0x12, 0x25, 0x0a, 0x0d,
|
|
|
+ 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x61, 0x67, 0x18, 0x0c, 0x20,
|
|
|
+ 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x0c, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x69, 0x6e, 0x67,
|
|
|
+ 0x54, 0x61, 0x67, 0x12, 0x35, 0x0a, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x02, 0x20,
|
|
|
+ 0x03, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65,
|
|
|
+ 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x72, 0x2e, 0x44, 0x6f, 0x6d, 0x61,
|
|
|
+ 0x69, 0x6e, 0x52, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x33, 0x0a, 0x04, 0x63, 0x69,
|
|
|
+ 0x64, 0x72, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79,
|
|
|
+ 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x72,
|
|
|
+ 0x2e, 0x43, 0x49, 0x44, 0x52, 0x42, 0x02, 0x18, 0x01, 0x52, 0x04, 0x63, 0x69, 0x64, 0x72, 0x12,
|
|
|
+ 0x32, 0x0a, 0x05, 0x67, 0x65, 0x6f, 0x69, 0x70, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c,
|
|
|
+ 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e,
|
|
|
+ 0x72, 0x6f, 0x75, 0x74, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x6f, 0x49, 0x50, 0x52, 0x05, 0x67, 0x65,
|
|
|
+ 0x6f, 0x69, 0x70, 0x12, 0x43, 0x0a, 0x0a, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x72, 0x61, 0x6e, 0x67,
|
|
|
+ 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e,
|
|
|
+ 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x6e, 0x65, 0x74, 0x2e,
|
|
|
+ 0x50, 0x6f, 0x72, 0x74, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x42, 0x02, 0x18, 0x01, 0x52, 0x09, 0x70,
|
|
|
+ 0x6f, 0x72, 0x74, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x3c, 0x0a, 0x09, 0x70, 0x6f, 0x72, 0x74,
|
|
|
+ 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x76, 0x32,
|
|
|
+ 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
|
|
|
+ 0x6e, 0x65, 0x74, 0x2e, 0x50, 0x6f, 0x72, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x08, 0x70, 0x6f,
|
|
|
+ 0x72, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x49, 0x0a, 0x0c, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72,
|
|
|
+ 0x6b, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x76,
|
|
|
+ 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
|
|
|
+ 0x2e, 0x6e, 0x65, 0x74, 0x2e, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x4c, 0x69, 0x73, 0x74,
|
|
|
+ 0x42, 0x02, 0x18, 0x01, 0x52, 0x0b, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x4c, 0x69, 0x73,
|
|
|
+ 0x74, 0x12, 0x3a, 0x0a, 0x08, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x18, 0x0d, 0x20,
|
|
|
+ 0x03, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65,
|
|
|
+ 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x6e, 0x65, 0x74, 0x2e, 0x4e, 0x65, 0x74, 0x77,
|
|
|
+ 0x6f, 0x72, 0x6b, 0x52, 0x08, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x73, 0x12, 0x40, 0x0a,
|
|
|
+ 0x0b, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x63, 0x69, 0x64, 0x72, 0x18, 0x06, 0x20, 0x03,
|
|
|
+ 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e,
|
|
|
+ 0x61, 0x70, 0x70, 0x2e, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x72, 0x2e, 0x43, 0x49, 0x44, 0x52, 0x42,
|
|
|
+ 0x02, 0x18, 0x01, 0x52, 0x0a, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x69, 0x64, 0x72, 0x12,
|
|
|
+ 0x3f, 0x0a, 0x0c, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x67, 0x65, 0x6f, 0x69, 0x70, 0x18,
|
|
|
+ 0x0b, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f,
|
|
|
+ 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x72, 0x2e, 0x47, 0x65,
|
|
|
+ 0x6f, 0x49, 0x50, 0x52, 0x0b, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x47, 0x65, 0x6f, 0x69, 0x70,
|
|
|
+ 0x12, 0x1d, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x07,
|
|
|
+ 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x75, 0x73, 0x65, 0x72, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12,
|
|
|
+ 0x1f, 0x0a, 0x0b, 0x69, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x5f, 0x74, 0x61, 0x67, 0x18, 0x08,
|
|
|
+ 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x69, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x54, 0x61, 0x67,
|
|
|
+ 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x18, 0x09, 0x20, 0x03,
|
|
|
+ 0x28, 0x09, 0x52, 0x08, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x12, 0x1e, 0x0a, 0x0a,
|
|
|
+ 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09,
|
|
|
+ 0x52, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x42, 0x0c, 0x0a, 0x0a,
|
|
|
+ 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x74, 0x61, 0x67, 0x22, 0x4e, 0x0a, 0x0d, 0x42, 0x61,
|
|
|
+ 0x6c, 0x61, 0x6e, 0x63, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x74,
|
|
|
+ 0x61, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x61, 0x67, 0x12, 0x2b, 0x0a,
|
|
|
+ 0x11, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x5f, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74,
|
|
|
+ 0x6f, 0x72, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x10, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75,
|
|
|
+ 0x6e, 0x64, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x22, 0xad, 0x02, 0x0a, 0x06, 0x43,
|
|
|
+ 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x55, 0x0a, 0x0f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x5f,
|
|
|
+ 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c,
|
|
|
+ 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e,
|
|
|
+ 0x72, 0x6f, 0x75, 0x74, 0x65, 0x72, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x44, 0x6f,
|
|
|
+ 0x6d, 0x61, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x52, 0x0e, 0x64, 0x6f,
|
|
|
+ 0x6d, 0x61, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x12, 0x36, 0x0a, 0x04,
|
|
|
+ 0x72, 0x75, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x76, 0x32, 0x72,
|
|
|
+ 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x72, 0x6f, 0x75, 0x74,
|
|
|
+ 0x65, 0x72, 0x2e, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x52, 0x04,
|
|
|
+ 0x72, 0x75, 0x6c, 0x65, 0x12, 0x4b, 0x0a, 0x0e, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x69, 0x6e,
|
|
|
+ 0x67, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x76,
|
|
|
+ 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x72, 0x6f,
|
|
|
+ 0x75, 0x74, 0x65, 0x72, 0x2e, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x69, 0x6e, 0x67, 0x52, 0x75,
|
|
|
+ 0x6c, 0x65, 0x52, 0x0d, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c,
|
|
|
+ 0x65, 0x22, 0x47, 0x0a, 0x0e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x61, 0x74,
|
|
|
+ 0x65, 0x67, 0x79, 0x12, 0x08, 0x0a, 0x04, 0x41, 0x73, 0x49, 0x73, 0x10, 0x00, 0x12, 0x09, 0x0a,
|
|
|
+ 0x05, 0x55, 0x73, 0x65, 0x49, 0x70, 0x10, 0x01, 0x12, 0x10, 0x0a, 0x0c, 0x49, 0x70, 0x49, 0x66,
|
|
|
+ 0x4e, 0x6f, 0x6e, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x10, 0x02, 0x12, 0x0e, 0x0a, 0x0a, 0x49, 0x70,
|
|
|
+ 0x4f, 0x6e, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x10, 0x03, 0x42, 0x3d, 0x0a, 0x19, 0x63, 0x6f,
|
|
|
+ 0x6d, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70,
|
|
|
+ 0x2e, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x72, 0x50, 0x01, 0x5a, 0x06, 0x72, 0x6f, 0x75, 0x74, 0x65,
|
|
|
+ 0x72, 0xaa, 0x02, 0x15, 0x56, 0x32, 0x52, 0x61, 0x79, 0x2e, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x41,
|
|
|
+ 0x70, 0x70, 0x2e, 0x52, 0x6f, 0x75, 0x74, 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
|
+ 0x33,
|
|
|
+}
|
|
|
+
|
|
|
+var (
|
|
|
+ file_v2ray_com_core_app_router_config_proto_rawDescOnce sync.Once
|
|
|
+ file_v2ray_com_core_app_router_config_proto_rawDescData = file_v2ray_com_core_app_router_config_proto_rawDesc
|
|
|
+)
|
|
|
+
|
|
|
+func file_v2ray_com_core_app_router_config_proto_rawDescGZIP() []byte {
|
|
|
+ file_v2ray_com_core_app_router_config_proto_rawDescOnce.Do(func() {
|
|
|
+ file_v2ray_com_core_app_router_config_proto_rawDescData = protoimpl.X.CompressGZIP(file_v2ray_com_core_app_router_config_proto_rawDescData)
|
|
|
+ })
|
|
|
+ return file_v2ray_com_core_app_router_config_proto_rawDescData
|
|
|
+}
|
|
|
+
|
|
|
+var file_v2ray_com_core_app_router_config_proto_enumTypes = make([]protoimpl.EnumInfo, 2)
|
|
|
+var file_v2ray_com_core_app_router_config_proto_msgTypes = make([]protoimpl.MessageInfo, 10)
|
|
|
+var file_v2ray_com_core_app_router_config_proto_goTypes = []interface{}{
|
|
|
+ (Domain_Type)(0), // 0: v2ray.core.app.router.Domain.Type
|
|
|
+ (Config_DomainStrategy)(0), // 1: v2ray.core.app.router.Config.DomainStrategy
|
|
|
+ (*Domain)(nil), // 2: v2ray.core.app.router.Domain
|
|
|
+ (*CIDR)(nil), // 3: v2ray.core.app.router.CIDR
|
|
|
+ (*GeoIP)(nil), // 4: v2ray.core.app.router.GeoIP
|
|
|
+ (*GeoIPList)(nil), // 5: v2ray.core.app.router.GeoIPList
|
|
|
+ (*GeoSite)(nil), // 6: v2ray.core.app.router.GeoSite
|
|
|
+ (*GeoSiteList)(nil), // 7: v2ray.core.app.router.GeoSiteList
|
|
|
+ (*RoutingRule)(nil), // 8: v2ray.core.app.router.RoutingRule
|
|
|
+ (*BalancingRule)(nil), // 9: v2ray.core.app.router.BalancingRule
|
|
|
+ (*Config)(nil), // 10: v2ray.core.app.router.Config
|
|
|
+ (*Domain_Attribute)(nil), // 11: v2ray.core.app.router.Domain.Attribute
|
|
|
+ (*net.PortRange)(nil), // 12: v2ray.core.common.net.PortRange
|
|
|
+ (*net.PortList)(nil), // 13: v2ray.core.common.net.PortList
|
|
|
+ (*net.NetworkList)(nil), // 14: v2ray.core.common.net.NetworkList
|
|
|
+ (net.Network)(0), // 15: v2ray.core.common.net.Network
|
|
|
+}
|
|
|
+var file_v2ray_com_core_app_router_config_proto_depIdxs = []int32{
|
|
|
+ 0, // 0: v2ray.core.app.router.Domain.type:type_name -> v2ray.core.app.router.Domain.Type
|
|
|
+ 11, // 1: v2ray.core.app.router.Domain.attribute:type_name -> v2ray.core.app.router.Domain.Attribute
|
|
|
+ 3, // 2: v2ray.core.app.router.GeoIP.cidr:type_name -> v2ray.core.app.router.CIDR
|
|
|
+ 4, // 3: v2ray.core.app.router.GeoIPList.entry:type_name -> v2ray.core.app.router.GeoIP
|
|
|
+ 2, // 4: v2ray.core.app.router.GeoSite.domain:type_name -> v2ray.core.app.router.Domain
|
|
|
+ 6, // 5: v2ray.core.app.router.GeoSiteList.entry:type_name -> v2ray.core.app.router.GeoSite
|
|
|
+ 2, // 6: v2ray.core.app.router.RoutingRule.domain:type_name -> v2ray.core.app.router.Domain
|
|
|
+ 3, // 7: v2ray.core.app.router.RoutingRule.cidr:type_name -> v2ray.core.app.router.CIDR
|
|
|
+ 4, // 8: v2ray.core.app.router.RoutingRule.geoip:type_name -> v2ray.core.app.router.GeoIP
|
|
|
+ 12, // 9: v2ray.core.app.router.RoutingRule.port_range:type_name -> v2ray.core.common.net.PortRange
|
|
|
+ 13, // 10: v2ray.core.app.router.RoutingRule.port_list:type_name -> v2ray.core.common.net.PortList
|
|
|
+ 14, // 11: v2ray.core.app.router.RoutingRule.network_list:type_name -> v2ray.core.common.net.NetworkList
|
|
|
+ 15, // 12: v2ray.core.app.router.RoutingRule.networks:type_name -> v2ray.core.common.net.Network
|
|
|
+ 3, // 13: v2ray.core.app.router.RoutingRule.source_cidr:type_name -> v2ray.core.app.router.CIDR
|
|
|
+ 4, // 14: v2ray.core.app.router.RoutingRule.source_geoip:type_name -> v2ray.core.app.router.GeoIP
|
|
|
+ 1, // 15: v2ray.core.app.router.Config.domain_strategy:type_name -> v2ray.core.app.router.Config.DomainStrategy
|
|
|
+ 8, // 16: v2ray.core.app.router.Config.rule:type_name -> v2ray.core.app.router.RoutingRule
|
|
|
+ 9, // 17: v2ray.core.app.router.Config.balancing_rule:type_name -> v2ray.core.app.router.BalancingRule
|
|
|
+ 18, // [18:18] is the sub-list for method output_type
|
|
|
+ 18, // [18:18] is the sub-list for method input_type
|
|
|
+ 18, // [18:18] is the sub-list for extension type_name
|
|
|
+ 18, // [18:18] is the sub-list for extension extendee
|
|
|
+ 0, // [0:18] is the sub-list for field type_name
|
|
|
+}
|
|
|
+
|
|
|
+func init() { file_v2ray_com_core_app_router_config_proto_init() }
|
|
|
+func file_v2ray_com_core_app_router_config_proto_init() {
|
|
|
+ if File_v2ray_com_core_app_router_config_proto != nil {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if !protoimpl.UnsafeEnabled {
|
|
|
+ file_v2ray_com_core_app_router_config_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
|
+ switch v := v.(*Domain); i {
|
|
|
+ case 0:
|
|
|
+ return &v.state
|
|
|
+ case 1:
|
|
|
+ return &v.sizeCache
|
|
|
+ case 2:
|
|
|
+ return &v.unknownFields
|
|
|
+ default:
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ }
|
|
|
+ file_v2ray_com_core_app_router_config_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
|
|
+ switch v := v.(*CIDR); i {
|
|
|
+ case 0:
|
|
|
+ return &v.state
|
|
|
+ case 1:
|
|
|
+ return &v.sizeCache
|
|
|
+ case 2:
|
|
|
+ return &v.unknownFields
|
|
|
+ default:
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ }
|
|
|
+ file_v2ray_com_core_app_router_config_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
|
|
+ switch v := v.(*GeoIP); i {
|
|
|
+ case 0:
|
|
|
+ return &v.state
|
|
|
+ case 1:
|
|
|
+ return &v.sizeCache
|
|
|
+ case 2:
|
|
|
+ return &v.unknownFields
|
|
|
+ default:
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ }
|
|
|
+ file_v2ray_com_core_app_router_config_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
|
|
+ switch v := v.(*GeoIPList); i {
|
|
|
+ case 0:
|
|
|
+ return &v.state
|
|
|
+ case 1:
|
|
|
+ return &v.sizeCache
|
|
|
+ case 2:
|
|
|
+ return &v.unknownFields
|
|
|
+ default:
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ }
|
|
|
+ file_v2ray_com_core_app_router_config_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
|
|
+ switch v := v.(*GeoSite); i {
|
|
|
+ case 0:
|
|
|
+ return &v.state
|
|
|
+ case 1:
|
|
|
+ return &v.sizeCache
|
|
|
+ case 2:
|
|
|
+ return &v.unknownFields
|
|
|
+ default:
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ }
|
|
|
+ file_v2ray_com_core_app_router_config_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
|
|
|
+ switch v := v.(*GeoSiteList); i {
|
|
|
+ case 0:
|
|
|
+ return &v.state
|
|
|
+ case 1:
|
|
|
+ return &v.sizeCache
|
|
|
+ case 2:
|
|
|
+ return &v.unknownFields
|
|
|
+ default:
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ }
|
|
|
+ file_v2ray_com_core_app_router_config_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
|
|
|
+ switch v := v.(*RoutingRule); i {
|
|
|
+ case 0:
|
|
|
+ return &v.state
|
|
|
+ case 1:
|
|
|
+ return &v.sizeCache
|
|
|
+ case 2:
|
|
|
+ return &v.unknownFields
|
|
|
+ default:
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ }
|
|
|
+ file_v2ray_com_core_app_router_config_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
|
|
|
+ switch v := v.(*BalancingRule); i {
|
|
|
+ case 0:
|
|
|
+ return &v.state
|
|
|
+ case 1:
|
|
|
+ return &v.sizeCache
|
|
|
+ case 2:
|
|
|
+ return &v.unknownFields
|
|
|
+ default:
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ }
|
|
|
+ file_v2ray_com_core_app_router_config_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
|
|
|
+ switch v := v.(*Config); i {
|
|
|
+ case 0:
|
|
|
+ return &v.state
|
|
|
+ case 1:
|
|
|
+ return &v.sizeCache
|
|
|
+ case 2:
|
|
|
+ return &v.unknownFields
|
|
|
+ default:
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ }
|
|
|
+ file_v2ray_com_core_app_router_config_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
|
|
|
+ switch v := v.(*Domain_Attribute); i {
|
|
|
+ case 0:
|
|
|
+ return &v.state
|
|
|
+ case 1:
|
|
|
+ return &v.sizeCache
|
|
|
+ case 2:
|
|
|
+ return &v.unknownFields
|
|
|
+ default:
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ file_v2ray_com_core_app_router_config_proto_msgTypes[6].OneofWrappers = []interface{}{
|
|
|
+ (*RoutingRule_Tag)(nil),
|
|
|
+ (*RoutingRule_BalancingTag)(nil),
|
|
|
+ }
|
|
|
+ file_v2ray_com_core_app_router_config_proto_msgTypes[9].OneofWrappers = []interface{}{
|
|
|
+ (*Domain_Attribute_BoolValue)(nil),
|
|
|
+ (*Domain_Attribute_IntValue)(nil),
|
|
|
+ }
|
|
|
+ type x struct{}
|
|
|
+ out := protoimpl.TypeBuilder{
|
|
|
+ File: protoimpl.DescBuilder{
|
|
|
+ GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
|
+ RawDescriptor: file_v2ray_com_core_app_router_config_proto_rawDesc,
|
|
|
+ NumEnums: 2,
|
|
|
+ NumMessages: 10,
|
|
|
+ NumExtensions: 0,
|
|
|
+ NumServices: 0,
|
|
|
+ },
|
|
|
+ GoTypes: file_v2ray_com_core_app_router_config_proto_goTypes,
|
|
|
+ DependencyIndexes: file_v2ray_com_core_app_router_config_proto_depIdxs,
|
|
|
+ EnumInfos: file_v2ray_com_core_app_router_config_proto_enumTypes,
|
|
|
+ MessageInfos: file_v2ray_com_core_app_router_config_proto_msgTypes,
|
|
|
+ }.Build()
|
|
|
+ File_v2ray_com_core_app_router_config_proto = out.File
|
|
|
+ file_v2ray_com_core_app_router_config_proto_rawDesc = nil
|
|
|
+ file_v2ray_com_core_app_router_config_proto_goTypes = nil
|
|
|
+ file_v2ray_com_core_app_router_config_proto_depIdxs = nil
|
|
|
}
|