2020-11-25 13:01:53 +02:00
|
|
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
|
|
// versions:
|
|
|
|
// protoc-gen-go v1.25.0
|
2021-03-24 17:01:20 +02:00
|
|
|
// protoc v3.15.6
|
2020-11-25 13:01:53 +02:00
|
|
|
// source: app/router/config.proto
|
|
|
|
|
|
|
|
package router
|
|
|
|
|
|
|
|
import (
|
|
|
|
proto "github.com/golang/protobuf/proto"
|
2021-03-24 17:01:20 +02:00
|
|
|
domain "github.com/xtls/xray-core/common/matcher/domain"
|
|
|
|
geoip "github.com/xtls/xray-core/common/matcher/geoip"
|
2020-12-04 03:36:16 +02:00
|
|
|
net "github.com/xtls/xray-core/common/net"
|
2020-11-25 13:01:53 +02:00
|
|
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
|
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
|
|
reflect "reflect"
|
|
|
|
sync "sync"
|
|
|
|
)
|
|
|
|
|
|
|
|
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 that a sufficiently up-to-date version
|
|
|
|
// of the legacy proto package is being used.
|
|
|
|
const _ = proto.ProtoPackageIsVersion4
|
|
|
|
|
|
|
|
type Config_DomainStrategy int32
|
|
|
|
|
|
|
|
const (
|
|
|
|
// Use domain as is.
|
|
|
|
Config_AsIs Config_DomainStrategy = 0
|
|
|
|
// Always resolve IP for domains.
|
|
|
|
Config_UseIp Config_DomainStrategy = 1
|
|
|
|
// Resolve to IP if the domain doesn't match any rules.
|
|
|
|
Config_IpIfNonMatch Config_DomainStrategy = 2
|
|
|
|
// Resolve to IP if any rule requires IP matching.
|
|
|
|
Config_IpOnDemand Config_DomainStrategy = 3
|
|
|
|
)
|
|
|
|
|
|
|
|
// 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,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
func (x Config_DomainStrategy) Enum() *Config_DomainStrategy {
|
|
|
|
p := new(Config_DomainStrategy)
|
|
|
|
*p = x
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x Config_DomainStrategy) String() string {
|
|
|
|
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (Config_DomainStrategy) Descriptor() protoreflect.EnumDescriptor {
|
2021-03-24 17:01:20 +02:00
|
|
|
return file_app_router_config_proto_enumTypes[0].Descriptor()
|
2020-11-25 13:01:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (Config_DomainStrategy) Type() protoreflect.EnumType {
|
2021-03-24 17:01:20 +02:00
|
|
|
return &file_app_router_config_proto_enumTypes[0]
|
2020-11-25 13:01:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x Config_DomainStrategy) Number() protoreflect.EnumNumber {
|
|
|
|
return protoreflect.EnumNumber(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Use Config_DomainStrategy.Descriptor instead.
|
|
|
|
func (Config_DomainStrategy) EnumDescriptor() ([]byte, []int) {
|
2021-03-24 17:01:20 +02:00
|
|
|
return file_app_router_config_proto_rawDescGZIP(), []int{2, 0}
|
2020-11-25 13:01:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type RoutingRule struct {
|
|
|
|
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"`
|
|
|
|
// List of domains for target domain matching.
|
2021-03-24 17:01:20 +02:00
|
|
|
Domain []*domain.Domain `protobuf:"bytes,2,rep,name=domain,proto3" json:"domain,omitempty"`
|
2020-11-25 13:01:53 +02:00
|
|
|
// List of CIDRs for target IP address matching.
|
|
|
|
// Deprecated. Use geoip below.
|
|
|
|
//
|
|
|
|
// Deprecated: Do not use.
|
2021-03-24 17:01:20 +02:00
|
|
|
Cidr []*geoip.CIDR `protobuf:"bytes,3,rep,name=cidr,proto3" json:"cidr,omitempty"`
|
2020-11-25 13:01:53 +02:00
|
|
|
// 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.
|
2021-03-24 17:01:20 +02:00
|
|
|
Geoip []*geoip.GeoIP `protobuf:"bytes,10,rep,name=geoip,proto3" json:"geoip,omitempty"`
|
2020-11-25 13:01:53 +02:00
|
|
|
// A range of port [from, to]. If the destination port is in this range, this
|
|
|
|
// rule takes effect. Deprecated. Use port_list.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// 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=xray.common.net.Network" json:"networks,omitempty"`
|
|
|
|
// List of CIDRs for source IP address matching.
|
|
|
|
//
|
|
|
|
// Deprecated: Do not use.
|
2021-03-24 17:01:20 +02:00
|
|
|
SourceCidr []*geoip.CIDR `protobuf:"bytes,6,rep,name=source_cidr,json=sourceCidr,proto3" json:"source_cidr,omitempty"`
|
2020-11-25 13:01:53 +02:00
|
|
|
// List of GeoIPs for source IP address matching. If this entry exists, the
|
|
|
|
// source_cidr above will have no effect.
|
2021-03-24 17:01:20 +02:00
|
|
|
SourceGeoip []*geoip.GeoIP `protobuf:"bytes,11,rep,name=source_geoip,json=sourceGeoip,proto3" json:"source_geoip,omitempty"`
|
2020-11-25 13:01:53 +02:00
|
|
|
// List of ports for source port matching.
|
|
|
|
SourcePortList *net.PortList `protobuf:"bytes,16,opt,name=source_port_list,json=sourcePortList,proto3" json:"source_port_list,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 {
|
2021-03-24 17:01:20 +02:00
|
|
|
mi := &file_app_router_config_proto_msgTypes[0]
|
2020-11-25 13:01:53 +02:00
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *RoutingRule) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*RoutingRule) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *RoutingRule) ProtoReflect() protoreflect.Message {
|
2021-03-24 17:01:20 +02:00
|
|
|
mi := &file_app_router_config_proto_msgTypes[0]
|
2020-11-25 13:01:53 +02:00
|
|
|
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 RoutingRule.ProtoReflect.Descriptor instead.
|
|
|
|
func (*RoutingRule) Descriptor() ([]byte, []int) {
|
2021-03-24 17:01:20 +02:00
|
|
|
return file_app_router_config_proto_rawDescGZIP(), []int{0}
|
2020-11-25 13:01:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *RoutingRule) GetTargetTag() isRoutingRule_TargetTag {
|
|
|
|
if m != nil {
|
|
|
|
return m.TargetTag
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *RoutingRule) GetTag() string {
|
|
|
|
if x, ok := x.GetTargetTag().(*RoutingRule_Tag); ok {
|
|
|
|
return x.Tag
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *RoutingRule) GetBalancingTag() string {
|
|
|
|
if x, ok := x.GetTargetTag().(*RoutingRule_BalancingTag); ok {
|
|
|
|
return x.BalancingTag
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2021-03-24 17:01:20 +02:00
|
|
|
func (x *RoutingRule) GetDomain() []*domain.Domain {
|
2020-11-25 13:01:53 +02:00
|
|
|
if x != nil {
|
|
|
|
return x.Domain
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Do not use.
|
2021-03-24 17:01:20 +02:00
|
|
|
func (x *RoutingRule) GetCidr() []*geoip.CIDR {
|
2020-11-25 13:01:53 +02:00
|
|
|
if x != nil {
|
|
|
|
return x.Cidr
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-03-24 17:01:20 +02:00
|
|
|
func (x *RoutingRule) GetGeoip() []*geoip.GeoIP {
|
2020-11-25 13:01:53 +02:00
|
|
|
if x != nil {
|
|
|
|
return x.Geoip
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Do not use.
|
|
|
|
func (x *RoutingRule) GetPortRange() *net.PortRange {
|
|
|
|
if x != nil {
|
|
|
|
return x.PortRange
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *RoutingRule) GetPortList() *net.PortList {
|
|
|
|
if x != nil {
|
|
|
|
return x.PortList
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Do not use.
|
|
|
|
func (x *RoutingRule) GetNetworkList() *net.NetworkList {
|
|
|
|
if x != nil {
|
|
|
|
return x.NetworkList
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *RoutingRule) GetNetworks() []net.Network {
|
|
|
|
if x != nil {
|
|
|
|
return x.Networks
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deprecated: Do not use.
|
2021-03-24 17:01:20 +02:00
|
|
|
func (x *RoutingRule) GetSourceCidr() []*geoip.CIDR {
|
2020-11-25 13:01:53 +02:00
|
|
|
if x != nil {
|
|
|
|
return x.SourceCidr
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-03-24 17:01:20 +02:00
|
|
|
func (x *RoutingRule) GetSourceGeoip() []*geoip.GeoIP {
|
2020-11-25 13:01:53 +02:00
|
|
|
if x != nil {
|
|
|
|
return x.SourceGeoip
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *RoutingRule) GetSourcePortList() *net.PortList {
|
|
|
|
if x != nil {
|
|
|
|
return x.SourcePortList
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *RoutingRule) GetUserEmail() []string {
|
|
|
|
if x != nil {
|
|
|
|
return x.UserEmail
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *RoutingRule) GetInboundTag() []string {
|
|
|
|
if x != nil {
|
|
|
|
return x.InboundTag
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *RoutingRule) GetProtocol() []string {
|
|
|
|
if x != nil {
|
|
|
|
return x.Protocol
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *RoutingRule) GetAttributes() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.Attributes
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
type isRoutingRule_TargetTag interface {
|
|
|
|
isRoutingRule_TargetTag()
|
|
|
|
}
|
|
|
|
|
|
|
|
type RoutingRule_Tag struct {
|
|
|
|
// Tag of outbound that this rule is pointing to.
|
|
|
|
Tag string `protobuf:"bytes,1,opt,name=tag,proto3,oneof"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type RoutingRule_BalancingTag struct {
|
|
|
|
// Tag of routing balancer.
|
|
|
|
BalancingTag string `protobuf:"bytes,12,opt,name=balancing_tag,json=balancingTag,proto3,oneof"`
|
|
|
|
}
|
|
|
|
|
|
|
|
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 (x *BalancingRule) Reset() {
|
|
|
|
*x = BalancingRule{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-03-24 17:01:20 +02:00
|
|
|
mi := &file_app_router_config_proto_msgTypes[1]
|
2020-11-25 13:01:53 +02:00
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *BalancingRule) String() string {
|
|
|
|
return protoimpl.X.MessageStringOf(x)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*BalancingRule) ProtoMessage() {}
|
|
|
|
|
|
|
|
func (x *BalancingRule) ProtoReflect() protoreflect.Message {
|
2021-03-24 17:01:20 +02:00
|
|
|
mi := &file_app_router_config_proto_msgTypes[1]
|
2020-11-25 13:01:53 +02:00
|
|
|
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 BalancingRule.ProtoReflect.Descriptor instead.
|
|
|
|
func (*BalancingRule) Descriptor() ([]byte, []int) {
|
2021-03-24 17:01:20 +02:00
|
|
|
return file_app_router_config_proto_rawDescGZIP(), []int{1}
|
2020-11-25 13:01:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x *BalancingRule) GetTag() string {
|
|
|
|
if x != nil {
|
|
|
|
return x.Tag
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *BalancingRule) GetOutboundSelector() []string {
|
|
|
|
if x != nil {
|
|
|
|
return x.OutboundSelector
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
state protoimpl.MessageState
|
|
|
|
sizeCache protoimpl.SizeCache
|
|
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
|
|
DomainStrategy Config_DomainStrategy `protobuf:"varint,1,opt,name=domain_strategy,json=domainStrategy,proto3,enum=xray.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 (x *Config) Reset() {
|
|
|
|
*x = Config{}
|
|
|
|
if protoimpl.UnsafeEnabled {
|
2021-03-24 17:01:20 +02:00
|
|
|
mi := &file_app_router_config_proto_msgTypes[2]
|
2020-11-25 13:01:53 +02:00
|
|
|
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 {
|
2021-03-24 17:01:20 +02:00
|
|
|
mi := &file_app_router_config_proto_msgTypes[2]
|
2020-11-25 13:01:53 +02:00
|
|
|
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) {
|
2021-03-24 17:01:20 +02:00
|
|
|
return file_app_router_config_proto_rawDescGZIP(), []int{2}
|
2020-11-25 13:01:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (x *Config) GetDomainStrategy() Config_DomainStrategy {
|
|
|
|
if x != nil {
|
|
|
|
return x.DomainStrategy
|
|
|
|
}
|
|
|
|
return Config_AsIs
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *Config) GetRule() []*RoutingRule {
|
|
|
|
if x != nil {
|
|
|
|
return x.Rule
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x *Config) GetBalancingRule() []*BalancingRule {
|
|
|
|
if x != nil {
|
|
|
|
return x.BalancingRule
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var File_app_router_config_proto protoreflect.FileDescriptor
|
|
|
|
|
|
|
|
var file_app_router_config_proto_rawDesc = []byte{
|
|
|
|
0x0a, 0x17, 0x61, 0x70, 0x70, 0x2f, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x6e,
|
|
|
|
0x66, 0x69, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0f, 0x78, 0x72, 0x61, 0x79, 0x2e,
|
|
|
|
0x61, 0x70, 0x70, 0x2e, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x72, 0x1a, 0x15, 0x63, 0x6f, 0x6d, 0x6d,
|
|
|
|
0x6f, 0x6e, 0x2f, 0x6e, 0x65, 0x74, 0x2f, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
|
|
0x6f, 0x1a, 0x18, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x6e, 0x65, 0x74, 0x2f, 0x6e, 0x65,
|
2021-03-24 17:01:20 +02:00
|
|
|
0x74, 0x77, 0x6f, 0x72, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x22, 0x63, 0x6f, 0x6d,
|
|
|
|
0x6d, 0x6f, 0x6e, 0x2f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x72, 0x2f, 0x64, 0x6f, 0x6d, 0x61,
|
|
|
|
0x69, 0x6e, 0x2f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
|
|
|
|
0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x72, 0x2f,
|
|
|
|
0x67, 0x65, 0x6f, 0x69, 0x70, 0x2f, 0x67, 0x65, 0x6f, 0x69, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74,
|
|
|
|
0x6f, 0x22, 0xc1, 0x06, 0x0a, 0x0b, 0x52, 0x6f, 0x75, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c,
|
2020-11-25 13:01:53 +02:00
|
|
|
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,
|
2021-03-24 17:01:20 +02:00
|
|
|
0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x69, 0x6e, 0x67, 0x54, 0x61, 0x67, 0x12, 0x3a, 0x0a, 0x06,
|
|
|
|
0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x78,
|
|
|
|
0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x6d, 0x61, 0x74, 0x63, 0x68,
|
|
|
|
0x65, 0x72, 0x2e, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e,
|
|
|
|
0x52, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x37, 0x0a, 0x04, 0x63, 0x69, 0x64, 0x72,
|
|
|
|
0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f,
|
|
|
|
0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x72, 0x2e, 0x67, 0x65, 0x6f,
|
|
|
|
0x69, 0x70, 0x2e, 0x43, 0x49, 0x44, 0x52, 0x42, 0x02, 0x18, 0x01, 0x52, 0x04, 0x63, 0x69, 0x64,
|
|
|
|
0x72, 0x12, 0x36, 0x0a, 0x05, 0x67, 0x65, 0x6f, 0x69, 0x70, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x0b,
|
|
|
|
0x32, 0x20, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x6d,
|
|
|
|
0x61, 0x74, 0x63, 0x68, 0x65, 0x72, 0x2e, 0x67, 0x65, 0x6f, 0x69, 0x70, 0x2e, 0x47, 0x65, 0x6f,
|
|
|
|
0x49, 0x50, 0x52, 0x05, 0x67, 0x65, 0x6f, 0x69, 0x70, 0x12, 0x3d, 0x0a, 0x0a, 0x70, 0x6f, 0x72,
|
|
|
|
0x74, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e,
|
2020-11-25 13:01:53 +02:00
|
|
|
0x78, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x6e, 0x65, 0x74, 0x2e,
|
2021-03-24 17:01:20 +02:00
|
|
|
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, 0x36, 0x0a, 0x09, 0x70, 0x6f, 0x72, 0x74,
|
|
|
|
0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x78, 0x72,
|
|
|
|
0x61, 0x79, 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, 0x43, 0x0a, 0x0c, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x6c, 0x69, 0x73, 0x74,
|
|
|
|
0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x78, 0x72, 0x61, 0x79, 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, 0x34, 0x0a, 0x08, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b,
|
|
|
|
0x73, 0x18, 0x0d, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x18, 0x2e, 0x78, 0x72, 0x61, 0x79, 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, 0x44, 0x0a, 0x0b, 0x73,
|
|
|
|
0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x63, 0x69, 0x64, 0x72, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b,
|
|
|
|
0x32, 0x1f, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x6d,
|
|
|
|
0x61, 0x74, 0x63, 0x68, 0x65, 0x72, 0x2e, 0x67, 0x65, 0x6f, 0x69, 0x70, 0x2e, 0x43, 0x49, 0x44,
|
|
|
|
0x52, 0x42, 0x02, 0x18, 0x01, 0x52, 0x0a, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x69, 0x64,
|
|
|
|
0x72, 0x12, 0x43, 0x0a, 0x0c, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x67, 0x65, 0x6f, 0x69,
|
|
|
|
0x70, 0x18, 0x0b, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x63,
|
|
|
|
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x72, 0x2e, 0x67, 0x65,
|
|
|
|
0x6f, 0x69, 0x70, 0x2e, 0x47, 0x65, 0x6f, 0x49, 0x50, 0x52, 0x0b, 0x73, 0x6f, 0x75, 0x72, 0x63,
|
|
|
|
0x65, 0x47, 0x65, 0x6f, 0x69, 0x70, 0x12, 0x43, 0x0a, 0x10, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
|
|
|
|
0x5f, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0b,
|
|
|
|
0x32, 0x19, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x6e,
|
|
|
|
0x65, 0x74, 0x2e, 0x50, 0x6f, 0x72, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x0e, 0x73, 0x6f, 0x75,
|
|
|
|
0x72, 0x63, 0x65, 0x50, 0x6f, 0x72, 0x74, 0x4c, 0x69, 0x73, 0x74, 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, 0x9b, 0x02, 0x0a, 0x06, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
|
|
|
|
0x12, 0x4f, 0x0a, 0x0f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74,
|
|
|
|
0x65, 0x67, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x26, 0x2e, 0x78, 0x72, 0x61, 0x79,
|
|
|
|
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, 0x30, 0x0a, 0x04, 0x72, 0x75, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32,
|
|
|
|
0x1c, 0x2e, 0x78, 0x72, 0x61, 0x79, 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, 0x45, 0x0a, 0x0e, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x69, 0x6e, 0x67,
|
|
|
|
0x5f, 0x72, 0x75, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x78, 0x72,
|
|
|
|
0x61, 0x79, 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, 0x4f, 0x0a, 0x13, 0x63, 0x6f, 0x6d, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e,
|
|
|
|
0x61, 0x70, 0x70, 0x2e, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x72, 0x50, 0x01, 0x5a, 0x24, 0x67, 0x69,
|
|
|
|
0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x78, 0x74, 0x6c, 0x73, 0x2f, 0x78, 0x72,
|
|
|
|
0x61, 0x79, 0x2d, 0x63, 0x6f, 0x72, 0x65, 0x2f, 0x61, 0x70, 0x70, 0x2f, 0x72, 0x6f, 0x75, 0x74,
|
|
|
|
0x65, 0x72, 0xaa, 0x02, 0x0f, 0x58, 0x72, 0x61, 0x79, 0x2e, 0x41, 0x70, 0x70, 0x2e, 0x52, 0x6f,
|
|
|
|
0x75, 0x74, 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
2020-11-25 13:01:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
file_app_router_config_proto_rawDescOnce sync.Once
|
|
|
|
file_app_router_config_proto_rawDescData = file_app_router_config_proto_rawDesc
|
|
|
|
)
|
|
|
|
|
|
|
|
func file_app_router_config_proto_rawDescGZIP() []byte {
|
|
|
|
file_app_router_config_proto_rawDescOnce.Do(func() {
|
|
|
|
file_app_router_config_proto_rawDescData = protoimpl.X.CompressGZIP(file_app_router_config_proto_rawDescData)
|
|
|
|
})
|
|
|
|
return file_app_router_config_proto_rawDescData
|
|
|
|
}
|
|
|
|
|
2021-03-24 17:01:20 +02:00
|
|
|
var file_app_router_config_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
|
|
|
|
var file_app_router_config_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
|
2020-11-25 13:01:53 +02:00
|
|
|
var file_app_router_config_proto_goTypes = []interface{}{
|
2021-03-24 17:01:20 +02:00
|
|
|
(Config_DomainStrategy)(0), // 0: xray.app.router.Config.DomainStrategy
|
|
|
|
(*RoutingRule)(nil), // 1: xray.app.router.RoutingRule
|
|
|
|
(*BalancingRule)(nil), // 2: xray.app.router.BalancingRule
|
|
|
|
(*Config)(nil), // 3: xray.app.router.Config
|
|
|
|
(*domain.Domain)(nil), // 4: xray.common.matcher.domain.Domain
|
|
|
|
(*geoip.CIDR)(nil), // 5: xray.common.matcher.geoip.CIDR
|
|
|
|
(*geoip.GeoIP)(nil), // 6: xray.common.matcher.geoip.GeoIP
|
|
|
|
(*net.PortRange)(nil), // 7: xray.common.net.PortRange
|
|
|
|
(*net.PortList)(nil), // 8: xray.common.net.PortList
|
|
|
|
(*net.NetworkList)(nil), // 9: xray.common.net.NetworkList
|
|
|
|
(net.Network)(0), // 10: xray.common.net.Network
|
2020-11-25 13:01:53 +02:00
|
|
|
}
|
|
|
|
var file_app_router_config_proto_depIdxs = []int32{
|
2021-03-24 17:01:20 +02:00
|
|
|
4, // 0: xray.app.router.RoutingRule.domain:type_name -> xray.common.matcher.domain.Domain
|
|
|
|
5, // 1: xray.app.router.RoutingRule.cidr:type_name -> xray.common.matcher.geoip.CIDR
|
|
|
|
6, // 2: xray.app.router.RoutingRule.geoip:type_name -> xray.common.matcher.geoip.GeoIP
|
|
|
|
7, // 3: xray.app.router.RoutingRule.port_range:type_name -> xray.common.net.PortRange
|
|
|
|
8, // 4: xray.app.router.RoutingRule.port_list:type_name -> xray.common.net.PortList
|
|
|
|
9, // 5: xray.app.router.RoutingRule.network_list:type_name -> xray.common.net.NetworkList
|
|
|
|
10, // 6: xray.app.router.RoutingRule.networks:type_name -> xray.common.net.Network
|
|
|
|
5, // 7: xray.app.router.RoutingRule.source_cidr:type_name -> xray.common.matcher.geoip.CIDR
|
|
|
|
6, // 8: xray.app.router.RoutingRule.source_geoip:type_name -> xray.common.matcher.geoip.GeoIP
|
|
|
|
8, // 9: xray.app.router.RoutingRule.source_port_list:type_name -> xray.common.net.PortList
|
|
|
|
0, // 10: xray.app.router.Config.domain_strategy:type_name -> xray.app.router.Config.DomainStrategy
|
|
|
|
1, // 11: xray.app.router.Config.rule:type_name -> xray.app.router.RoutingRule
|
|
|
|
2, // 12: xray.app.router.Config.balancing_rule:type_name -> xray.app.router.BalancingRule
|
|
|
|
13, // [13:13] is the sub-list for method output_type
|
|
|
|
13, // [13:13] is the sub-list for method input_type
|
|
|
|
13, // [13:13] is the sub-list for extension type_name
|
|
|
|
13, // [13:13] is the sub-list for extension extendee
|
|
|
|
0, // [0:13] is the sub-list for field type_name
|
2020-11-25 13:01:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() { file_app_router_config_proto_init() }
|
|
|
|
func file_app_router_config_proto_init() {
|
|
|
|
if File_app_router_config_proto != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if !protoimpl.UnsafeEnabled {
|
|
|
|
file_app_router_config_proto_msgTypes[0].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
|
|
|
|
}
|
|
|
|
}
|
2021-03-24 17:01:20 +02:00
|
|
|
file_app_router_config_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
2020-11-25 13:01:53 +02:00
|
|
|
switch v := v.(*BalancingRule); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
2021-03-24 17:01:20 +02:00
|
|
|
file_app_router_config_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
2020-11-25 13:01:53 +02:00
|
|
|
switch v := v.(*Config); i {
|
|
|
|
case 0:
|
|
|
|
return &v.state
|
|
|
|
case 1:
|
|
|
|
return &v.sizeCache
|
|
|
|
case 2:
|
|
|
|
return &v.unknownFields
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-03-24 17:01:20 +02:00
|
|
|
file_app_router_config_proto_msgTypes[0].OneofWrappers = []interface{}{
|
2020-11-25 13:01:53 +02:00
|
|
|
(*RoutingRule_Tag)(nil),
|
|
|
|
(*RoutingRule_BalancingTag)(nil),
|
|
|
|
}
|
|
|
|
type x struct{}
|
|
|
|
out := protoimpl.TypeBuilder{
|
|
|
|
File: protoimpl.DescBuilder{
|
|
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
|
|
RawDescriptor: file_app_router_config_proto_rawDesc,
|
2021-03-24 17:01:20 +02:00
|
|
|
NumEnums: 1,
|
|
|
|
NumMessages: 3,
|
2020-11-25 13:01:53 +02:00
|
|
|
NumExtensions: 0,
|
|
|
|
NumServices: 0,
|
|
|
|
},
|
|
|
|
GoTypes: file_app_router_config_proto_goTypes,
|
|
|
|
DependencyIndexes: file_app_router_config_proto_depIdxs,
|
|
|
|
EnumInfos: file_app_router_config_proto_enumTypes,
|
|
|
|
MessageInfos: file_app_router_config_proto_msgTypes,
|
|
|
|
}.Build()
|
|
|
|
File_app_router_config_proto = out.File
|
|
|
|
file_app_router_config_proto_rawDesc = nil
|
|
|
|
file_app_router_config_proto_goTypes = nil
|
|
|
|
file_app_router_config_proto_depIdxs = nil
|
|
|
|
}
|