mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-08-10 09:38:56 +00:00
214 lines
8.8 KiB
Go
214 lines
8.8 KiB
Go
![]() |
// Code generated by protoc-gen-go.
|
||
|
// source: v2ray.com/core/app/router/rules/config.proto
|
||
|
// DO NOT EDIT!
|
||
|
|
||
|
/*
|
||
|
Package rules is a generated protocol buffer package.
|
||
|
|
||
|
It is generated from these files:
|
||
|
v2ray.com/core/app/router/rules/config.proto
|
||
|
|
||
|
It has these top-level messages:
|
||
|
Domain
|
||
|
IP
|
||
|
RoutingRule
|
||
|
Config
|
||
|
*/
|
||
|
package rules
|
||
|
|
||
|
import proto "github.com/golang/protobuf/proto"
|
||
|
import fmt "fmt"
|
||
|
import math "math"
|
||
|
import v2ray_core_common_net "v2ray.com/core/common/net"
|
||
|
import v2ray_core_common_net1 "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
|
||
|
|
||
|
// 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.ProtoPackageIsVersion2 // please upgrade the proto package
|
||
|
|
||
|
// 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
|
||
|
)
|
||
|
|
||
|
var Domain_Type_name = map[int32]string{
|
||
|
0: "Plain",
|
||
|
1: "Regex",
|
||
|
}
|
||
|
var Domain_Type_value = map[string]int32{
|
||
|
"Plain": 0,
|
||
|
"Regex": 1,
|
||
|
}
|
||
|
|
||
|
func (x Domain_Type) String() string {
|
||
|
return proto.EnumName(Domain_Type_name, int32(x))
|
||
|
}
|
||
|
func (Domain_Type) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0, 0} }
|
||
|
|
||
|
type Config_DomainStrategy int32
|
||
|
|
||
|
const (
|
||
|
Config_AsIs Config_DomainStrategy = 0
|
||
|
Config_UseIp Config_DomainStrategy = 1
|
||
|
Config_IpIfNonMatch Config_DomainStrategy = 2
|
||
|
)
|
||
|
|
||
|
var Config_DomainStrategy_name = map[int32]string{
|
||
|
0: "AsIs",
|
||
|
1: "UseIp",
|
||
|
2: "IpIfNonMatch",
|
||
|
}
|
||
|
var Config_DomainStrategy_value = map[string]int32{
|
||
|
"AsIs": 0,
|
||
|
"UseIp": 1,
|
||
|
"IpIfNonMatch": 2,
|
||
|
}
|
||
|
|
||
|
func (x Config_DomainStrategy) String() string {
|
||
|
return proto.EnumName(Config_DomainStrategy_name, int32(x))
|
||
|
}
|
||
|
func (Config_DomainStrategy) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{3, 0} }
|
||
|
|
||
|
// Domain for routing decision.
|
||
|
type Domain struct {
|
||
|
// Domain matching type.
|
||
|
Type Domain_Type `protobuf:"varint,1,opt,name=type,enum=v2ray.core.app.router.rules.Domain_Type" json:"type,omitempty"`
|
||
|
// Domain value.
|
||
|
Value string `protobuf:"bytes,2,opt,name=value" json:"value,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 fileDescriptor0, []int{0} }
|
||
|
|
||
|
// IP for routing decision.
|
||
|
type IP struct {
|
||
|
// IP address, should be either 4 or 16 bytes.
|
||
|
Ip []byte `protobuf:"bytes,1,opt,name=ip,proto3" json:"ip,omitempty"`
|
||
|
// Number of right-most bits in IP matching that is allowed.
|
||
|
// Single IP address like 127.0.0.1 should use unmatching_bits = 0.
|
||
|
// CIDR 10.0.0.0/8 should use unmatching_bits = 32-8 = 24.
|
||
|
UnmatchingBits uint32 `protobuf:"varint,2,opt,name=unmatching_bits,json=unmatchingBits" json:"unmatching_bits,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (m *IP) Reset() { *m = IP{} }
|
||
|
func (m *IP) String() string { return proto.CompactTextString(m) }
|
||
|
func (*IP) ProtoMessage() {}
|
||
|
func (*IP) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
|
||
|
|
||
|
type RoutingRule struct {
|
||
|
Tag string `protobuf:"bytes,1,opt,name=tag" json:"tag,omitempty"`
|
||
|
Domain []*Domain `protobuf:"bytes,2,rep,name=domain" json:"domain,omitempty"`
|
||
|
Ip []*IP `protobuf:"bytes,3,rep,name=ip" json:"ip,omitempty"`
|
||
|
PortRange *v2ray_core_common_net.PortRange `protobuf:"bytes,4,opt,name=port_range,json=portRange" json:"port_range,omitempty"`
|
||
|
NetworkList *v2ray_core_common_net1.NetworkList `protobuf:"bytes,5,opt,name=network_list,json=networkList" json:"network_list,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (m *RoutingRule) Reset() { *m = RoutingRule{} }
|
||
|
func (m *RoutingRule) String() string { return proto.CompactTextString(m) }
|
||
|
func (*RoutingRule) ProtoMessage() {}
|
||
|
func (*RoutingRule) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
|
||
|
|
||
|
func (m *RoutingRule) GetDomain() []*Domain {
|
||
|
if m != nil {
|
||
|
return m.Domain
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *RoutingRule) GetIp() []*IP {
|
||
|
if m != nil {
|
||
|
return m.Ip
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *RoutingRule) GetPortRange() *v2ray_core_common_net.PortRange {
|
||
|
if m != nil {
|
||
|
return m.PortRange
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func (m *RoutingRule) GetNetworkList() *v2ray_core_common_net1.NetworkList {
|
||
|
if m != nil {
|
||
|
return m.NetworkList
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
type Config struct {
|
||
|
DomainStrategy Config_DomainStrategy `protobuf:"varint,1,opt,name=domain_strategy,json=domainStrategy,enum=v2ray.core.app.router.rules.Config_DomainStrategy" json:"domain_strategy,omitempty"`
|
||
|
Rule []*RoutingRule `protobuf:"bytes,2,rep,name=rule" json:"rule,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (m *Config) Reset() { *m = Config{} }
|
||
|
func (m *Config) String() string { return proto.CompactTextString(m) }
|
||
|
func (*Config) ProtoMessage() {}
|
||
|
func (*Config) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
|
||
|
|
||
|
func (m *Config) GetRule() []*RoutingRule {
|
||
|
if m != nil {
|
||
|
return m.Rule
|
||
|
}
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
proto.RegisterType((*Domain)(nil), "v2ray.core.app.router.rules.Domain")
|
||
|
proto.RegisterType((*IP)(nil), "v2ray.core.app.router.rules.IP")
|
||
|
proto.RegisterType((*RoutingRule)(nil), "v2ray.core.app.router.rules.RoutingRule")
|
||
|
proto.RegisterType((*Config)(nil), "v2ray.core.app.router.rules.Config")
|
||
|
proto.RegisterEnum("v2ray.core.app.router.rules.Domain_Type", Domain_Type_name, Domain_Type_value)
|
||
|
proto.RegisterEnum("v2ray.core.app.router.rules.Config_DomainStrategy", Config_DomainStrategy_name, Config_DomainStrategy_value)
|
||
|
}
|
||
|
|
||
|
func init() { proto.RegisterFile("v2ray.com/core/app/router/rules/config.proto", fileDescriptor0) }
|
||
|
|
||
|
var fileDescriptor0 = []byte{
|
||
|
// 472 bytes of a gzipped FileDescriptorProto
|
||
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x8c, 0x52, 0x4f, 0x8b, 0xd5, 0x3e,
|
||
|
0x14, 0xfd, 0xb5, 0xef, 0x0f, 0xbf, 0x77, 0xdf, 0xb3, 0x53, 0x82, 0x8b, 0x32, 0x0a, 0x53, 0xaa,
|
||
|
0x30, 0x5d, 0x48, 0x0a, 0x15, 0x71, 0xa1, 0x22, 0x3e, 0x75, 0x51, 0xd0, 0xa1, 0x44, 0xdd, 0xe8,
|
||
|
0xe2, 0x91, 0xe9, 0x64, 0x6a, 0xb0, 0x4d, 0x42, 0x9a, 0x8e, 0x3e, 0xbf, 0x87, 0xdf, 0xce, 0x0f,
|
||
|
0x23, 0x4d, 0x3a, 0xcc, 0x8c, 0x30, 0xc5, 0xdd, 0xbd, 0xe1, 0x9c, 0x93, 0x7b, 0xef, 0x39, 0xf0,
|
||
|
0xe8, 0x22, 0xd7, 0x74, 0x8f, 0x2b, 0xd9, 0x66, 0x95, 0xd4, 0x2c, 0xa3, 0x4a, 0x65, 0x5a, 0xf6,
|
||
|
0x86, 0xe9, 0x4c, 0xf7, 0x0d, 0xeb, 0xb2, 0x4a, 0x8a, 0x73, 0x5e, 0x63, 0xa5, 0xa5, 0x91, 0xe8,
|
||
|
0xde, 0x25, 0x5a, 0x33, 0x4c, 0x95, 0xc2, 0x0e, 0x89, 0x2d, 0xf2, 0xf0, 0xe1, 0x5f, 0x52, 0x95,
|
||
|
0x6c, 0x5b, 0x29, 0x32, 0xc1, 0x4c, 0xa6, 0xa4, 0x36, 0x4e, 0xe2, 0xf0, 0xf8, 0x76, 0x94, 0x60,
|
||
|
0xe6, 0xbb, 0xd4, 0xdf, 0x1c, 0x30, 0xf9, 0x09, 0xcb, 0x37, 0xb2, 0xa5, 0x5c, 0xa0, 0xe7, 0x30,
|
||
|
0x37, 0x7b, 0xc5, 0x22, 0x2f, 0xf6, 0xd2, 0x20, 0x4f, 0xf1, 0xc4, 0x10, 0xd8, 0x51, 0xf0, 0xc7,
|
||
|
0xbd, 0x62, 0xc4, 0xb2, 0xd0, 0x5d, 0x58, 0x5c, 0xd0, 0xa6, 0x67, 0x91, 0x1f, 0x7b, 0xe9, 0x8a,
|
||
|
0xb8, 0x26, 0xb9, 0x0f, 0xf3, 0x01, 0x83, 0x56, 0xb0, 0x28, 0x1b, 0xca, 0x45, 0xf8, 0xdf, 0x50,
|
||
|
0x12, 0x56, 0xb3, 0x1f, 0xa1, 0x97, 0xbc, 0x00, 0xbf, 0x28, 0x51, 0x00, 0x3e, 0x57, 0xf6, 0xd7,
|
||
|
0x0d, 0xf1, 0xb9, 0x42, 0xc7, 0x70, 0xd0, 0x8b, 0x96, 0x9a, 0xea, 0x2b, 0x17, 0xf5, 0xee, 0x94,
|
||
|
0x9b, 0xce, 0x6a, 0xde, 0x21, 0xc1, 0xd5, 0xf3, 0x96, 0x9b, 0x2e, 0xf9, 0xe5, 0xc3, 0x9a, 0xc8,
|
||
|
0xde, 0x70, 0x51, 0x93, 0xbe, 0x61, 0x28, 0x84, 0x99, 0xa1, 0xb5, 0x55, 0x5a, 0x91, 0xa1, 0x44,
|
||
|
0xcf, 0x60, 0x79, 0x66, 0x27, 0x8d, 0xfc, 0x78, 0x96, 0xae, 0xf3, 0x07, 0xff, 0xb0, 0x14, 0x19,
|
||
|
0x29, 0x28, 0xb3, 0x73, 0xcd, 0x2c, 0xf1, 0x68, 0x92, 0x58, 0x94, 0x76, 0xf0, 0x97, 0x00, 0x83,
|
||
|
0x03, 0x3b, 0x4d, 0x45, 0xcd, 0xa2, 0x79, 0xec, 0xa5, 0xeb, 0x3c, 0xbe, 0x4e, 0x74, 0x26, 0x60,
|
||
|
0xc1, 0x0c, 0x2e, 0xa5, 0x36, 0x64, 0xc0, 0x91, 0x95, 0xba, 0x2c, 0xd1, 0x5b, 0xd8, 0x8c, 0xe6,
|
||
|
0xec, 0x1a, 0xde, 0x99, 0x68, 0x61, 0x25, 0x92, 0x5b, 0x24, 0x4e, 0x1c, 0xf4, 0x1d, 0xef, 0x0c,
|
||
|
0x59, 0x8b, 0xab, 0x26, 0xf9, 0xed, 0xc1, 0xf2, 0xb5, 0xcd, 0x13, 0xfa, 0x02, 0x07, 0x6e, 0x9b,
|
||
|
0x5d, 0x67, 0x34, 0x35, 0xac, 0xde, 0x8f, 0xf6, 0xe6, 0x93, 0x0b, 0x39, 0xf6, 0x78, 0x90, 0x0f,
|
||
|
0x23, 0x93, 0x04, 0x67, 0x37, 0xfa, 0x21, 0x30, 0x03, 0x7c, 0xbc, 0xed, 0x74, 0x60, 0xae, 0xf9,
|
||
|
0x44, 0x2c, 0x2b, 0x79, 0x0a, 0xc1, 0x4d, 0x7d, 0xf4, 0x3f, 0xcc, 0x5f, 0x75, 0x45, 0xe7, 0x32,
|
||
|
0xf2, 0xa9, 0x63, 0x85, 0x0a, 0x3d, 0x14, 0xc2, 0xa6, 0x50, 0xc5, 0xf9, 0x89, 0x14, 0xef, 0x07,
|
||
|
0xef, 0x43, 0x7f, 0xfb, 0x04, 0x8e, 0x2a, 0xd9, 0x4e, 0xfd, 0xb6, 0x5d, 0xbb, 0x05, 0xca, 0x21,
|
||
|
0xe1, 0x9f, 0x17, 0xf6, 0xed, 0x74, 0x69, 0xf3, 0xfe, 0xf8, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff,
|
||
|
0x00, 0xa8, 0x7d, 0x12, 0x8b, 0x03, 0x00, 0x00,
|
||
|
}
|