mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-04-16 20:45:50 +00:00
1. **Fixed XPadding Placement Dropdown**: - Added the missing `cookie` and `query` options to `xPaddingPlacement` (`stream_xhttp.html`). - *Why:* Previously, users wanting `cookie` obfuscation were forced to use the `header` placement string. This caused Xray-core to blindly intercept the entire monolithic HTTP Cookie header, failing internal padding-length validations and causing the inbound to silently drop the connection. 2. **Fixed Uplink Data Placement Validation**: - Replaced the unsupported `query` option with `cookie` in `uplinkDataPlacement`. - *Why:* Xray-core's `transport_internet.go` explicitly forbids `query` as an uplink placement option. Selecting it from the UI previously sent a payload that would cause Xray-core to instantly throw an `unsupported uplink data placement: query` panic. Adding `cookie` perfectly aligns the UI with Xray-core restrictions. ### Related Issues - Resolves #3992
1300 lines
39 KiB
Go
1300 lines
39 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// versions:
|
|
// protoc-gen-go v1.36.11
|
|
// protoc v6.33.5
|
|
// source: app/router/config.proto
|
|
|
|
package router
|
|
|
|
import (
|
|
net "github.com/xtls/xray-core/common/net"
|
|
serial "github.com/xtls/xray-core/common/serial"
|
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
reflect "reflect"
|
|
sync "sync"
|
|
unsafe "unsafe"
|
|
)
|
|
|
|
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)
|
|
)
|
|
|
|
// Type of domain value.
|
|
type Domain_Type int32
|
|
|
|
const (
|
|
// The value is used as is.
|
|
Domain_Plain Domain_Type = 0
|
|
// The value is used as a regular expression.
|
|
Domain_Regex Domain_Type = 1
|
|
// The value is a root domain.
|
|
Domain_Domain Domain_Type = 2
|
|
// The value is a domain.
|
|
Domain_Full Domain_Type = 3
|
|
)
|
|
|
|
// 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,
|
|
}
|
|
)
|
|
|
|
func (x Domain_Type) Enum() *Domain_Type {
|
|
p := new(Domain_Type)
|
|
*p = x
|
|
return p
|
|
}
|
|
|
|
func (x Domain_Type) String() string {
|
|
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
}
|
|
|
|
func (Domain_Type) Descriptor() protoreflect.EnumDescriptor {
|
|
return file_app_router_config_proto_enumTypes[0].Descriptor()
|
|
}
|
|
|
|
func (Domain_Type) Type() protoreflect.EnumType {
|
|
return &file_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 file_app_router_config_proto_rawDescGZIP(), []int{0, 0}
|
|
}
|
|
|
|
type Config_DomainStrategy int32
|
|
|
|
const (
|
|
// Use domain as is.
|
|
Config_AsIs Config_DomainStrategy = 0
|
|
// 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",
|
|
2: "IpIfNonMatch",
|
|
3: "IpOnDemand",
|
|
}
|
|
Config_DomainStrategy_value = map[string]int32{
|
|
"AsIs": 0,
|
|
"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 {
|
|
return file_app_router_config_proto_enumTypes[1].Descriptor()
|
|
}
|
|
|
|
func (Config_DomainStrategy) Type() protoreflect.EnumType {
|
|
return &file_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 file_app_router_config_proto_rawDescGZIP(), []int{11, 0}
|
|
}
|
|
|
|
// Domain for routing decision.
|
|
type Domain struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
// Domain matching type.
|
|
Type Domain_Type `protobuf:"varint,1,opt,name=type,proto3,enum=xray.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"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *Domain) Reset() {
|
|
*x = Domain{}
|
|
mi := &file_app_router_config_proto_msgTypes[0]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *Domain) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*Domain) ProtoMessage() {}
|
|
|
|
func (x *Domain) ProtoReflect() protoreflect.Message {
|
|
mi := &file_app_router_config_proto_msgTypes[0]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use Domain.ProtoReflect.Descriptor instead.
|
|
func (*Domain) Descriptor() ([]byte, []int) {
|
|
return file_app_router_config_proto_rawDescGZIP(), []int{0}
|
|
}
|
|
|
|
func (x *Domain) GetType() Domain_Type {
|
|
if x != nil {
|
|
return x.Type
|
|
}
|
|
return Domain_Plain
|
|
}
|
|
|
|
func (x *Domain) GetValue() string {
|
|
if x != nil {
|
|
return x.Value
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *Domain) GetAttribute() []*Domain_Attribute {
|
|
if x != nil {
|
|
return x.Attribute
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// IP for routing decision, in CIDR form.
|
|
type CIDR struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
// 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"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *CIDR) Reset() {
|
|
*x = CIDR{}
|
|
mi := &file_app_router_config_proto_msgTypes[1]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *CIDR) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*CIDR) ProtoMessage() {}
|
|
|
|
func (x *CIDR) ProtoReflect() protoreflect.Message {
|
|
mi := &file_app_router_config_proto_msgTypes[1]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use CIDR.ProtoReflect.Descriptor instead.
|
|
func (*CIDR) Descriptor() ([]byte, []int) {
|
|
return file_app_router_config_proto_rawDescGZIP(), []int{1}
|
|
}
|
|
|
|
func (x *CIDR) GetIp() []byte {
|
|
if x != nil {
|
|
return x.Ip
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *CIDR) GetPrefix() uint32 {
|
|
if x != nil {
|
|
return x.Prefix
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type GeoIP struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
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"`
|
|
ReverseMatch bool `protobuf:"varint,3,opt,name=reverse_match,json=reverseMatch,proto3" json:"reverse_match,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *GeoIP) Reset() {
|
|
*x = GeoIP{}
|
|
mi := &file_app_router_config_proto_msgTypes[2]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *GeoIP) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*GeoIP) ProtoMessage() {}
|
|
|
|
func (x *GeoIP) ProtoReflect() protoreflect.Message {
|
|
mi := &file_app_router_config_proto_msgTypes[2]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use GeoIP.ProtoReflect.Descriptor instead.
|
|
func (*GeoIP) Descriptor() ([]byte, []int) {
|
|
return file_app_router_config_proto_rawDescGZIP(), []int{2}
|
|
}
|
|
|
|
func (x *GeoIP) GetCountryCode() string {
|
|
if x != nil {
|
|
return x.CountryCode
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *GeoIP) GetCidr() []*CIDR {
|
|
if x != nil {
|
|
return x.Cidr
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *GeoIP) GetReverseMatch() bool {
|
|
if x != nil {
|
|
return x.ReverseMatch
|
|
}
|
|
return false
|
|
}
|
|
|
|
type GeoIPList struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
Entry []*GeoIP `protobuf:"bytes,1,rep,name=entry,proto3" json:"entry,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *GeoIPList) Reset() {
|
|
*x = GeoIPList{}
|
|
mi := &file_app_router_config_proto_msgTypes[3]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *GeoIPList) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*GeoIPList) ProtoMessage() {}
|
|
|
|
func (x *GeoIPList) ProtoReflect() protoreflect.Message {
|
|
mi := &file_app_router_config_proto_msgTypes[3]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use GeoIPList.ProtoReflect.Descriptor instead.
|
|
func (*GeoIPList) Descriptor() ([]byte, []int) {
|
|
return file_app_router_config_proto_rawDescGZIP(), []int{3}
|
|
}
|
|
|
|
func (x *GeoIPList) GetEntry() []*GeoIP {
|
|
if x != nil {
|
|
return x.Entry
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type GeoSite struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
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"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *GeoSite) Reset() {
|
|
*x = GeoSite{}
|
|
mi := &file_app_router_config_proto_msgTypes[4]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *GeoSite) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*GeoSite) ProtoMessage() {}
|
|
|
|
func (x *GeoSite) ProtoReflect() protoreflect.Message {
|
|
mi := &file_app_router_config_proto_msgTypes[4]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use GeoSite.ProtoReflect.Descriptor instead.
|
|
func (*GeoSite) Descriptor() ([]byte, []int) {
|
|
return file_app_router_config_proto_rawDescGZIP(), []int{4}
|
|
}
|
|
|
|
func (x *GeoSite) GetCountryCode() string {
|
|
if x != nil {
|
|
return x.CountryCode
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *GeoSite) GetDomain() []*Domain {
|
|
if x != nil {
|
|
return x.Domain
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type GeoSiteList struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
Entry []*GeoSite `protobuf:"bytes,1,rep,name=entry,proto3" json:"entry,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *GeoSiteList) Reset() {
|
|
*x = GeoSiteList{}
|
|
mi := &file_app_router_config_proto_msgTypes[5]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *GeoSiteList) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*GeoSiteList) ProtoMessage() {}
|
|
|
|
func (x *GeoSiteList) ProtoReflect() protoreflect.Message {
|
|
mi := &file_app_router_config_proto_msgTypes[5]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use GeoSiteList.ProtoReflect.Descriptor instead.
|
|
func (*GeoSiteList) Descriptor() ([]byte, []int) {
|
|
return file_app_router_config_proto_rawDescGZIP(), []int{5}
|
|
}
|
|
|
|
func (x *GeoSiteList) GetEntry() []*GeoSite {
|
|
if x != nil {
|
|
return x.Entry
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type RoutingRule struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
// Types that are valid to be assigned to TargetTag:
|
|
//
|
|
// *RoutingRule_Tag
|
|
// *RoutingRule_BalancingTag
|
|
TargetTag isRoutingRule_TargetTag `protobuf_oneof:"target_tag"`
|
|
RuleTag string `protobuf:"bytes,19,opt,name=rule_tag,json=ruleTag,proto3" json:"rule_tag,omitempty"`
|
|
// List of domains for target domain matching.
|
|
Domain []*Domain `protobuf:"bytes,2,rep,name=domain,proto3" json:"domain,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"`
|
|
// List of ports.
|
|
PortList *net.PortList `protobuf:"bytes,14,opt,name=port_list,json=portList,proto3" json:"port_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 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"`
|
|
// 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 map[string]string `protobuf:"bytes,15,rep,name=attributes,proto3" json:"attributes,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
|
|
LocalGeoip []*GeoIP `protobuf:"bytes,17,rep,name=local_geoip,json=localGeoip,proto3" json:"local_geoip,omitempty"`
|
|
LocalPortList *net.PortList `protobuf:"bytes,18,opt,name=local_port_list,json=localPortList,proto3" json:"local_port_list,omitempty"`
|
|
VlessRouteList *net.PortList `protobuf:"bytes,20,opt,name=vless_route_list,json=vlessRouteList,proto3" json:"vless_route_list,omitempty"`
|
|
Process []string `protobuf:"bytes,21,rep,name=process,proto3" json:"process,omitempty"`
|
|
Webhook *WebhookConfig `protobuf:"bytes,22,opt,name=webhook,proto3" json:"webhook,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *RoutingRule) Reset() {
|
|
*x = RoutingRule{}
|
|
mi := &file_app_router_config_proto_msgTypes[6]
|
|
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 {
|
|
mi := &file_app_router_config_proto_msgTypes[6]
|
|
if 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) {
|
|
return file_app_router_config_proto_rawDescGZIP(), []int{6}
|
|
}
|
|
|
|
func (x *RoutingRule) GetTargetTag() isRoutingRule_TargetTag {
|
|
if x != nil {
|
|
return x.TargetTag
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *RoutingRule) GetTag() string {
|
|
if x != nil {
|
|
if x, ok := x.TargetTag.(*RoutingRule_Tag); ok {
|
|
return x.Tag
|
|
}
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *RoutingRule) GetBalancingTag() string {
|
|
if x != nil {
|
|
if x, ok := x.TargetTag.(*RoutingRule_BalancingTag); ok {
|
|
return x.BalancingTag
|
|
}
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *RoutingRule) GetRuleTag() string {
|
|
if x != nil {
|
|
return x.RuleTag
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *RoutingRule) GetDomain() []*Domain {
|
|
if x != nil {
|
|
return x.Domain
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *RoutingRule) GetGeoip() []*GeoIP {
|
|
if x != nil {
|
|
return x.Geoip
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *RoutingRule) GetPortList() *net.PortList {
|
|
if x != nil {
|
|
return x.PortList
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *RoutingRule) GetNetworks() []net.Network {
|
|
if x != nil {
|
|
return x.Networks
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *RoutingRule) GetSourceGeoip() []*GeoIP {
|
|
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() map[string]string {
|
|
if x != nil {
|
|
return x.Attributes
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *RoutingRule) GetLocalGeoip() []*GeoIP {
|
|
if x != nil {
|
|
return x.LocalGeoip
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *RoutingRule) GetLocalPortList() *net.PortList {
|
|
if x != nil {
|
|
return x.LocalPortList
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *RoutingRule) GetVlessRouteList() *net.PortList {
|
|
if x != nil {
|
|
return x.VlessRouteList
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *RoutingRule) GetProcess() []string {
|
|
if x != nil {
|
|
return x.Process
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *RoutingRule) GetWebhook() *WebhookConfig {
|
|
if x != nil {
|
|
return x.Webhook
|
|
}
|
|
return nil
|
|
}
|
|
|
|
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 WebhookConfig struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
Url string `protobuf:"bytes,1,opt,name=url,proto3" json:"url,omitempty"`
|
|
Deduplication uint32 `protobuf:"varint,2,opt,name=deduplication,proto3" json:"deduplication,omitempty"`
|
|
Headers map[string]string `protobuf:"bytes,3,rep,name=headers,proto3" json:"headers,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *WebhookConfig) Reset() {
|
|
*x = WebhookConfig{}
|
|
mi := &file_app_router_config_proto_msgTypes[7]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *WebhookConfig) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*WebhookConfig) ProtoMessage() {}
|
|
|
|
func (x *WebhookConfig) ProtoReflect() protoreflect.Message {
|
|
mi := &file_app_router_config_proto_msgTypes[7]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use WebhookConfig.ProtoReflect.Descriptor instead.
|
|
func (*WebhookConfig) Descriptor() ([]byte, []int) {
|
|
return file_app_router_config_proto_rawDescGZIP(), []int{7}
|
|
}
|
|
|
|
func (x *WebhookConfig) GetUrl() string {
|
|
if x != nil {
|
|
return x.Url
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *WebhookConfig) GetDeduplication() uint32 {
|
|
if x != nil {
|
|
return x.Deduplication
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *WebhookConfig) GetHeaders() map[string]string {
|
|
if x != nil {
|
|
return x.Headers
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type BalancingRule struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
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"`
|
|
Strategy string `protobuf:"bytes,3,opt,name=strategy,proto3" json:"strategy,omitempty"`
|
|
StrategySettings *serial.TypedMessage `protobuf:"bytes,4,opt,name=strategy_settings,json=strategySettings,proto3" json:"strategy_settings,omitempty"`
|
|
FallbackTag string `protobuf:"bytes,5,opt,name=fallback_tag,json=fallbackTag,proto3" json:"fallback_tag,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *BalancingRule) Reset() {
|
|
*x = BalancingRule{}
|
|
mi := &file_app_router_config_proto_msgTypes[8]
|
|
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 {
|
|
mi := &file_app_router_config_proto_msgTypes[8]
|
|
if 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) {
|
|
return file_app_router_config_proto_rawDescGZIP(), []int{8}
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
func (x *BalancingRule) GetStrategy() string {
|
|
if x != nil {
|
|
return x.Strategy
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *BalancingRule) GetStrategySettings() *serial.TypedMessage {
|
|
if x != nil {
|
|
return x.StrategySettings
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *BalancingRule) GetFallbackTag() string {
|
|
if x != nil {
|
|
return x.FallbackTag
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type StrategyWeight struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
Regexp bool `protobuf:"varint,1,opt,name=regexp,proto3" json:"regexp,omitempty"`
|
|
Match string `protobuf:"bytes,2,opt,name=match,proto3" json:"match,omitempty"`
|
|
Value float32 `protobuf:"fixed32,3,opt,name=value,proto3" json:"value,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *StrategyWeight) Reset() {
|
|
*x = StrategyWeight{}
|
|
mi := &file_app_router_config_proto_msgTypes[9]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *StrategyWeight) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*StrategyWeight) ProtoMessage() {}
|
|
|
|
func (x *StrategyWeight) ProtoReflect() protoreflect.Message {
|
|
mi := &file_app_router_config_proto_msgTypes[9]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use StrategyWeight.ProtoReflect.Descriptor instead.
|
|
func (*StrategyWeight) Descriptor() ([]byte, []int) {
|
|
return file_app_router_config_proto_rawDescGZIP(), []int{9}
|
|
}
|
|
|
|
func (x *StrategyWeight) GetRegexp() bool {
|
|
if x != nil {
|
|
return x.Regexp
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (x *StrategyWeight) GetMatch() string {
|
|
if x != nil {
|
|
return x.Match
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *StrategyWeight) GetValue() float32 {
|
|
if x != nil {
|
|
return x.Value
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type StrategyLeastLoadConfig struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
// weight settings
|
|
Costs []*StrategyWeight `protobuf:"bytes,2,rep,name=costs,proto3" json:"costs,omitempty"`
|
|
// RTT baselines for selecting, int64 values of time.Duration
|
|
Baselines []int64 `protobuf:"varint,3,rep,packed,name=baselines,proto3" json:"baselines,omitempty"`
|
|
// expected nodes count to select
|
|
Expected int32 `protobuf:"varint,4,opt,name=expected,proto3" json:"expected,omitempty"`
|
|
// max acceptable rtt, filter away high delay nodes. default 0
|
|
MaxRTT int64 `protobuf:"varint,5,opt,name=maxRTT,proto3" json:"maxRTT,omitempty"`
|
|
// acceptable failure rate
|
|
Tolerance float32 `protobuf:"fixed32,6,opt,name=tolerance,proto3" json:"tolerance,omitempty"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *StrategyLeastLoadConfig) Reset() {
|
|
*x = StrategyLeastLoadConfig{}
|
|
mi := &file_app_router_config_proto_msgTypes[10]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *StrategyLeastLoadConfig) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*StrategyLeastLoadConfig) ProtoMessage() {}
|
|
|
|
func (x *StrategyLeastLoadConfig) ProtoReflect() protoreflect.Message {
|
|
mi := &file_app_router_config_proto_msgTypes[10]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use StrategyLeastLoadConfig.ProtoReflect.Descriptor instead.
|
|
func (*StrategyLeastLoadConfig) Descriptor() ([]byte, []int) {
|
|
return file_app_router_config_proto_rawDescGZIP(), []int{10}
|
|
}
|
|
|
|
func (x *StrategyLeastLoadConfig) GetCosts() []*StrategyWeight {
|
|
if x != nil {
|
|
return x.Costs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *StrategyLeastLoadConfig) GetBaselines() []int64 {
|
|
if x != nil {
|
|
return x.Baselines
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *StrategyLeastLoadConfig) GetExpected() int32 {
|
|
if x != nil {
|
|
return x.Expected
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *StrategyLeastLoadConfig) GetMaxRTT() int64 {
|
|
if x != nil {
|
|
return x.MaxRTT
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *StrategyLeastLoadConfig) GetTolerance() float32 {
|
|
if x != nil {
|
|
return x.Tolerance
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type Config struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
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"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *Config) Reset() {
|
|
*x = Config{}
|
|
mi := &file_app_router_config_proto_msgTypes[11]
|
|
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_app_router_config_proto_msgTypes[11]
|
|
if 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 file_app_router_config_proto_rawDescGZIP(), []int{11}
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
type Domain_Attribute struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
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"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *Domain_Attribute) Reset() {
|
|
*x = Domain_Attribute{}
|
|
mi := &file_app_router_config_proto_msgTypes[12]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *Domain_Attribute) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*Domain_Attribute) ProtoMessage() {}
|
|
|
|
func (x *Domain_Attribute) ProtoReflect() protoreflect.Message {
|
|
mi := &file_app_router_config_proto_msgTypes[12]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use Domain_Attribute.ProtoReflect.Descriptor instead.
|
|
func (*Domain_Attribute) Descriptor() ([]byte, []int) {
|
|
return file_app_router_config_proto_rawDescGZIP(), []int{0, 0}
|
|
}
|
|
|
|
func (x *Domain_Attribute) GetKey() string {
|
|
if x != nil {
|
|
return x.Key
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *Domain_Attribute) GetTypedValue() isDomain_Attribute_TypedValue {
|
|
if x != nil {
|
|
return x.TypedValue
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *Domain_Attribute) GetBoolValue() bool {
|
|
if x != nil {
|
|
if x, ok := x.TypedValue.(*Domain_Attribute_BoolValue); ok {
|
|
return x.BoolValue
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (x *Domain_Attribute) GetIntValue() int64 {
|
|
if x != nil {
|
|
if x, ok := x.TypedValue.(*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_app_router_config_proto protoreflect.FileDescriptor
|
|
|
|
const file_app_router_config_proto_rawDesc = "" +
|
|
"\n" +
|
|
"\x17app/router/config.proto\x12\x0fxray.app.router\x1a!common/serial/typed_message.proto\x1a\x15common/net/port.proto\x1a\x18common/net/network.proto\"\xb3\x02\n" +
|
|
"\x06Domain\x120\n" +
|
|
"\x04type\x18\x01 \x01(\x0e2\x1c.xray.app.router.Domain.TypeR\x04type\x12\x14\n" +
|
|
"\x05value\x18\x02 \x01(\tR\x05value\x12?\n" +
|
|
"\tattribute\x18\x03 \x03(\v2!.xray.app.router.Domain.AttributeR\tattribute\x1al\n" +
|
|
"\tAttribute\x12\x10\n" +
|
|
"\x03key\x18\x01 \x01(\tR\x03key\x12\x1f\n" +
|
|
"\n" +
|
|
"bool_value\x18\x02 \x01(\bH\x00R\tboolValue\x12\x1d\n" +
|
|
"\tint_value\x18\x03 \x01(\x03H\x00R\bintValueB\r\n" +
|
|
"\vtyped_value\"2\n" +
|
|
"\x04Type\x12\t\n" +
|
|
"\x05Plain\x10\x00\x12\t\n" +
|
|
"\x05Regex\x10\x01\x12\n" +
|
|
"\n" +
|
|
"\x06Domain\x10\x02\x12\b\n" +
|
|
"\x04Full\x10\x03\".\n" +
|
|
"\x04CIDR\x12\x0e\n" +
|
|
"\x02ip\x18\x01 \x01(\fR\x02ip\x12\x16\n" +
|
|
"\x06prefix\x18\x02 \x01(\rR\x06prefix\"z\n" +
|
|
"\x05GeoIP\x12!\n" +
|
|
"\fcountry_code\x18\x01 \x01(\tR\vcountryCode\x12)\n" +
|
|
"\x04cidr\x18\x02 \x03(\v2\x15.xray.app.router.CIDRR\x04cidr\x12#\n" +
|
|
"\rreverse_match\x18\x03 \x01(\bR\freverseMatch\"9\n" +
|
|
"\tGeoIPList\x12,\n" +
|
|
"\x05entry\x18\x01 \x03(\v2\x16.xray.app.router.GeoIPR\x05entry\"]\n" +
|
|
"\aGeoSite\x12!\n" +
|
|
"\fcountry_code\x18\x01 \x01(\tR\vcountryCode\x12/\n" +
|
|
"\x06domain\x18\x02 \x03(\v2\x17.xray.app.router.DomainR\x06domain\"=\n" +
|
|
"\vGeoSiteList\x12.\n" +
|
|
"\x05entry\x18\x01 \x03(\v2\x18.xray.app.router.GeoSiteR\x05entry\"\xbc\a\n" +
|
|
"\vRoutingRule\x12\x12\n" +
|
|
"\x03tag\x18\x01 \x01(\tH\x00R\x03tag\x12%\n" +
|
|
"\rbalancing_tag\x18\f \x01(\tH\x00R\fbalancingTag\x12\x19\n" +
|
|
"\brule_tag\x18\x13 \x01(\tR\aruleTag\x12/\n" +
|
|
"\x06domain\x18\x02 \x03(\v2\x17.xray.app.router.DomainR\x06domain\x12,\n" +
|
|
"\x05geoip\x18\n" +
|
|
" \x03(\v2\x16.xray.app.router.GeoIPR\x05geoip\x126\n" +
|
|
"\tport_list\x18\x0e \x01(\v2\x19.xray.common.net.PortListR\bportList\x124\n" +
|
|
"\bnetworks\x18\r \x03(\x0e2\x18.xray.common.net.NetworkR\bnetworks\x129\n" +
|
|
"\fsource_geoip\x18\v \x03(\v2\x16.xray.app.router.GeoIPR\vsourceGeoip\x12C\n" +
|
|
"\x10source_port_list\x18\x10 \x01(\v2\x19.xray.common.net.PortListR\x0esourcePortList\x12\x1d\n" +
|
|
"\n" +
|
|
"user_email\x18\a \x03(\tR\tuserEmail\x12\x1f\n" +
|
|
"\vinbound_tag\x18\b \x03(\tR\n" +
|
|
"inboundTag\x12\x1a\n" +
|
|
"\bprotocol\x18\t \x03(\tR\bprotocol\x12L\n" +
|
|
"\n" +
|
|
"attributes\x18\x0f \x03(\v2,.xray.app.router.RoutingRule.AttributesEntryR\n" +
|
|
"attributes\x127\n" +
|
|
"\vlocal_geoip\x18\x11 \x03(\v2\x16.xray.app.router.GeoIPR\n" +
|
|
"localGeoip\x12A\n" +
|
|
"\x0flocal_port_list\x18\x12 \x01(\v2\x19.xray.common.net.PortListR\rlocalPortList\x12C\n" +
|
|
"\x10vless_route_list\x18\x14 \x01(\v2\x19.xray.common.net.PortListR\x0evlessRouteList\x12\x18\n" +
|
|
"\aprocess\x18\x15 \x03(\tR\aprocess\x128\n" +
|
|
"\awebhook\x18\x16 \x01(\v2\x1e.xray.app.router.WebhookConfigR\awebhook\x1a=\n" +
|
|
"\x0fAttributesEntry\x12\x10\n" +
|
|
"\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" +
|
|
"\x05value\x18\x02 \x01(\tR\x05value:\x028\x01B\f\n" +
|
|
"\n" +
|
|
"target_tag\"\xca\x01\n" +
|
|
"\rWebhookConfig\x12\x10\n" +
|
|
"\x03url\x18\x01 \x01(\tR\x03url\x12$\n" +
|
|
"\rdeduplication\x18\x02 \x01(\rR\rdeduplication\x12E\n" +
|
|
"\aheaders\x18\x03 \x03(\v2+.xray.app.router.WebhookConfig.HeadersEntryR\aheaders\x1a:\n" +
|
|
"\fHeadersEntry\x12\x10\n" +
|
|
"\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" +
|
|
"\x05value\x18\x02 \x01(\tR\x05value:\x028\x01\"\xdc\x01\n" +
|
|
"\rBalancingRule\x12\x10\n" +
|
|
"\x03tag\x18\x01 \x01(\tR\x03tag\x12+\n" +
|
|
"\x11outbound_selector\x18\x02 \x03(\tR\x10outboundSelector\x12\x1a\n" +
|
|
"\bstrategy\x18\x03 \x01(\tR\bstrategy\x12M\n" +
|
|
"\x11strategy_settings\x18\x04 \x01(\v2 .xray.common.serial.TypedMessageR\x10strategySettings\x12!\n" +
|
|
"\ffallback_tag\x18\x05 \x01(\tR\vfallbackTag\"T\n" +
|
|
"\x0eStrategyWeight\x12\x16\n" +
|
|
"\x06regexp\x18\x01 \x01(\bR\x06regexp\x12\x14\n" +
|
|
"\x05match\x18\x02 \x01(\tR\x05match\x12\x14\n" +
|
|
"\x05value\x18\x03 \x01(\x02R\x05value\"\xc0\x01\n" +
|
|
"\x17StrategyLeastLoadConfig\x125\n" +
|
|
"\x05costs\x18\x02 \x03(\v2\x1f.xray.app.router.StrategyWeightR\x05costs\x12\x1c\n" +
|
|
"\tbaselines\x18\x03 \x03(\x03R\tbaselines\x12\x1a\n" +
|
|
"\bexpected\x18\x04 \x01(\x05R\bexpected\x12\x16\n" +
|
|
"\x06maxRTT\x18\x05 \x01(\x03R\x06maxRTT\x12\x1c\n" +
|
|
"\ttolerance\x18\x06 \x01(\x02R\ttolerance\"\x90\x02\n" +
|
|
"\x06Config\x12O\n" +
|
|
"\x0fdomain_strategy\x18\x01 \x01(\x0e2&.xray.app.router.Config.DomainStrategyR\x0edomainStrategy\x120\n" +
|
|
"\x04rule\x18\x02 \x03(\v2\x1c.xray.app.router.RoutingRuleR\x04rule\x12E\n" +
|
|
"\x0ebalancing_rule\x18\x03 \x03(\v2\x1e.xray.app.router.BalancingRuleR\rbalancingRule\"<\n" +
|
|
"\x0eDomainStrategy\x12\b\n" +
|
|
"\x04AsIs\x10\x00\x12\x10\n" +
|
|
"\fIpIfNonMatch\x10\x02\x12\x0e\n" +
|
|
"\n" +
|
|
"IpOnDemand\x10\x03BO\n" +
|
|
"\x13com.xray.app.routerP\x01Z$github.com/xtls/xray-core/app/router\xaa\x02\x0fXray.App.Routerb\x06proto3"
|
|
|
|
var (
|
|
file_app_router_config_proto_rawDescOnce sync.Once
|
|
file_app_router_config_proto_rawDescData []byte
|
|
)
|
|
|
|
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(unsafe.Slice(unsafe.StringData(file_app_router_config_proto_rawDesc), len(file_app_router_config_proto_rawDesc)))
|
|
})
|
|
return file_app_router_config_proto_rawDescData
|
|
}
|
|
|
|
var file_app_router_config_proto_enumTypes = make([]protoimpl.EnumInfo, 2)
|
|
var file_app_router_config_proto_msgTypes = make([]protoimpl.MessageInfo, 15)
|
|
var file_app_router_config_proto_goTypes = []any{
|
|
(Domain_Type)(0), // 0: xray.app.router.Domain.Type
|
|
(Config_DomainStrategy)(0), // 1: xray.app.router.Config.DomainStrategy
|
|
(*Domain)(nil), // 2: xray.app.router.Domain
|
|
(*CIDR)(nil), // 3: xray.app.router.CIDR
|
|
(*GeoIP)(nil), // 4: xray.app.router.GeoIP
|
|
(*GeoIPList)(nil), // 5: xray.app.router.GeoIPList
|
|
(*GeoSite)(nil), // 6: xray.app.router.GeoSite
|
|
(*GeoSiteList)(nil), // 7: xray.app.router.GeoSiteList
|
|
(*RoutingRule)(nil), // 8: xray.app.router.RoutingRule
|
|
(*WebhookConfig)(nil), // 9: xray.app.router.WebhookConfig
|
|
(*BalancingRule)(nil), // 10: xray.app.router.BalancingRule
|
|
(*StrategyWeight)(nil), // 11: xray.app.router.StrategyWeight
|
|
(*StrategyLeastLoadConfig)(nil), // 12: xray.app.router.StrategyLeastLoadConfig
|
|
(*Config)(nil), // 13: xray.app.router.Config
|
|
(*Domain_Attribute)(nil), // 14: xray.app.router.Domain.Attribute
|
|
nil, // 15: xray.app.router.RoutingRule.AttributesEntry
|
|
nil, // 16: xray.app.router.WebhookConfig.HeadersEntry
|
|
(*net.PortList)(nil), // 17: xray.common.net.PortList
|
|
(net.Network)(0), // 18: xray.common.net.Network
|
|
(*serial.TypedMessage)(nil), // 19: xray.common.serial.TypedMessage
|
|
}
|
|
var file_app_router_config_proto_depIdxs = []int32{
|
|
0, // 0: xray.app.router.Domain.type:type_name -> xray.app.router.Domain.Type
|
|
14, // 1: xray.app.router.Domain.attribute:type_name -> xray.app.router.Domain.Attribute
|
|
3, // 2: xray.app.router.GeoIP.cidr:type_name -> xray.app.router.CIDR
|
|
4, // 3: xray.app.router.GeoIPList.entry:type_name -> xray.app.router.GeoIP
|
|
2, // 4: xray.app.router.GeoSite.domain:type_name -> xray.app.router.Domain
|
|
6, // 5: xray.app.router.GeoSiteList.entry:type_name -> xray.app.router.GeoSite
|
|
2, // 6: xray.app.router.RoutingRule.domain:type_name -> xray.app.router.Domain
|
|
4, // 7: xray.app.router.RoutingRule.geoip:type_name -> xray.app.router.GeoIP
|
|
17, // 8: xray.app.router.RoutingRule.port_list:type_name -> xray.common.net.PortList
|
|
18, // 9: xray.app.router.RoutingRule.networks:type_name -> xray.common.net.Network
|
|
4, // 10: xray.app.router.RoutingRule.source_geoip:type_name -> xray.app.router.GeoIP
|
|
17, // 11: xray.app.router.RoutingRule.source_port_list:type_name -> xray.common.net.PortList
|
|
15, // 12: xray.app.router.RoutingRule.attributes:type_name -> xray.app.router.RoutingRule.AttributesEntry
|
|
4, // 13: xray.app.router.RoutingRule.local_geoip:type_name -> xray.app.router.GeoIP
|
|
17, // 14: xray.app.router.RoutingRule.local_port_list:type_name -> xray.common.net.PortList
|
|
17, // 15: xray.app.router.RoutingRule.vless_route_list:type_name -> xray.common.net.PortList
|
|
9, // 16: xray.app.router.RoutingRule.webhook:type_name -> xray.app.router.WebhookConfig
|
|
16, // 17: xray.app.router.WebhookConfig.headers:type_name -> xray.app.router.WebhookConfig.HeadersEntry
|
|
19, // 18: xray.app.router.BalancingRule.strategy_settings:type_name -> xray.common.serial.TypedMessage
|
|
11, // 19: xray.app.router.StrategyLeastLoadConfig.costs:type_name -> xray.app.router.StrategyWeight
|
|
1, // 20: xray.app.router.Config.domain_strategy:type_name -> xray.app.router.Config.DomainStrategy
|
|
8, // 21: xray.app.router.Config.rule:type_name -> xray.app.router.RoutingRule
|
|
10, // 22: xray.app.router.Config.balancing_rule:type_name -> xray.app.router.BalancingRule
|
|
23, // [23:23] is the sub-list for method output_type
|
|
23, // [23:23] is the sub-list for method input_type
|
|
23, // [23:23] is the sub-list for extension type_name
|
|
23, // [23:23] is the sub-list for extension extendee
|
|
0, // [0:23] is the sub-list for field type_name
|
|
}
|
|
|
|
func init() { file_app_router_config_proto_init() }
|
|
func file_app_router_config_proto_init() {
|
|
if File_app_router_config_proto != nil {
|
|
return
|
|
}
|
|
file_app_router_config_proto_msgTypes[6].OneofWrappers = []any{
|
|
(*RoutingRule_Tag)(nil),
|
|
(*RoutingRule_BalancingTag)(nil),
|
|
}
|
|
file_app_router_config_proto_msgTypes[12].OneofWrappers = []any{
|
|
(*Domain_Attribute_BoolValue)(nil),
|
|
(*Domain_Attribute_IntValue)(nil),
|
|
}
|
|
type x struct{}
|
|
out := protoimpl.TypeBuilder{
|
|
File: protoimpl.DescBuilder{
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
RawDescriptor: unsafe.Slice(unsafe.StringData(file_app_router_config_proto_rawDesc), len(file_app_router_config_proto_rawDesc)),
|
|
NumEnums: 2,
|
|
NumMessages: 15,
|
|
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_goTypes = nil
|
|
file_app_router_config_proto_depIdxs = nil
|
|
}
|