mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-15 09:19:21 +02:00
230 lines
8.1 KiB
Go
230 lines
8.1 KiB
Go
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||
|
// versions:
|
||
|
// protoc-gen-go v1.25.0
|
||
|
// protoc v3.15.6
|
||
|
// source: common/matcher/domain/domain.proto
|
||
|
|
||
|
package domain
|
||
|
|
||
|
import (
|
||
|
proto "github.com/golang/protobuf/proto"
|
||
|
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 MatchingType int32
|
||
|
|
||
|
const (
|
||
|
MatchingType_Full MatchingType = 0
|
||
|
MatchingType_Subdomain MatchingType = 1
|
||
|
MatchingType_Keyword MatchingType = 2
|
||
|
MatchingType_Regex MatchingType = 3
|
||
|
)
|
||
|
|
||
|
// Enum value maps for MatchingType.
|
||
|
var (
|
||
|
MatchingType_name = map[int32]string{
|
||
|
0: "Full",
|
||
|
1: "Subdomain",
|
||
|
2: "Keyword",
|
||
|
3: "Regex",
|
||
|
}
|
||
|
MatchingType_value = map[string]int32{
|
||
|
"Full": 0,
|
||
|
"Subdomain": 1,
|
||
|
"Keyword": 2,
|
||
|
"Regex": 3,
|
||
|
}
|
||
|
)
|
||
|
|
||
|
func (x MatchingType) Enum() *MatchingType {
|
||
|
p := new(MatchingType)
|
||
|
*p = x
|
||
|
return p
|
||
|
}
|
||
|
|
||
|
func (x MatchingType) String() string {
|
||
|
return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
||
|
}
|
||
|
|
||
|
func (MatchingType) Descriptor() protoreflect.EnumDescriptor {
|
||
|
return file_common_matcher_domain_domain_proto_enumTypes[0].Descriptor()
|
||
|
}
|
||
|
|
||
|
func (MatchingType) Type() protoreflect.EnumType {
|
||
|
return &file_common_matcher_domain_domain_proto_enumTypes[0]
|
||
|
}
|
||
|
|
||
|
func (x MatchingType) Number() protoreflect.EnumNumber {
|
||
|
return protoreflect.EnumNumber(x)
|
||
|
}
|
||
|
|
||
|
// Deprecated: Use MatchingType.Descriptor instead.
|
||
|
func (MatchingType) EnumDescriptor() ([]byte, []int) {
|
||
|
return file_common_matcher_domain_domain_proto_rawDescGZIP(), []int{0}
|
||
|
}
|
||
|
|
||
|
type Domain struct {
|
||
|
state protoimpl.MessageState
|
||
|
sizeCache protoimpl.SizeCache
|
||
|
unknownFields protoimpl.UnknownFields
|
||
|
|
||
|
// Domain matching type.
|
||
|
Type MatchingType `protobuf:"varint,1,opt,name=type,proto3,enum=xray.common.matcher.domain.MatchingType" json:"type,omitempty"`
|
||
|
// Domain value.
|
||
|
Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (x *Domain) Reset() {
|
||
|
*x = Domain{}
|
||
|
if protoimpl.UnsafeEnabled {
|
||
|
mi := &file_common_matcher_domain_domain_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_common_matcher_domain_domain_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)
|
||
|
}
|
||
|
|
||
|
// Deprecated: Use Domain.ProtoReflect.Descriptor instead.
|
||
|
func (*Domain) Descriptor() ([]byte, []int) {
|
||
|
return file_common_matcher_domain_domain_proto_rawDescGZIP(), []int{0}
|
||
|
}
|
||
|
|
||
|
func (x *Domain) GetType() MatchingType {
|
||
|
if x != nil {
|
||
|
return x.Type
|
||
|
}
|
||
|
return MatchingType_Full
|
||
|
}
|
||
|
|
||
|
func (x *Domain) GetValue() string {
|
||
|
if x != nil {
|
||
|
return x.Value
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
var File_common_matcher_domain_domain_proto protoreflect.FileDescriptor
|
||
|
|
||
|
var file_common_matcher_domain_domain_proto_rawDesc = []byte{
|
||
|
0x0a, 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, 0x12, 0x1a, 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,
|
||
|
0x22, 0x5c, 0x0a, 0x06, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x3c, 0x0a, 0x04, 0x74, 0x79,
|
||
|
0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x28, 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, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 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, 0x2a, 0x3f,
|
||
|
0x0a, 0x0c, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x08,
|
||
|
0x0a, 0x04, 0x46, 0x75, 0x6c, 0x6c, 0x10, 0x00, 0x12, 0x0d, 0x0a, 0x09, 0x53, 0x75, 0x62, 0x64,
|
||
|
0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x4b, 0x65, 0x79, 0x77, 0x6f,
|
||
|
0x72, 0x64, 0x10, 0x02, 0x12, 0x09, 0x0a, 0x05, 0x52, 0x65, 0x67, 0x65, 0x78, 0x10, 0x03, 0x42,
|
||
|
0x70, 0x0a, 0x1e, 0x63, 0x6f, 0x6d, 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, 0x50, 0x01, 0x5a, 0x2f, 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, 0x63,
|
||
|
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x72, 0x2f, 0x64, 0x6f,
|
||
|
0x6d, 0x61, 0x69, 0x6e, 0xaa, 0x02, 0x1a, 0x58, 0x72, 0x61, 0x79, 0x2e, 0x43, 0x6f, 0x6d, 0x6d,
|
||
|
0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x65, 0x72, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69,
|
||
|
0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||
|
}
|
||
|
|
||
|
var (
|
||
|
file_common_matcher_domain_domain_proto_rawDescOnce sync.Once
|
||
|
file_common_matcher_domain_domain_proto_rawDescData = file_common_matcher_domain_domain_proto_rawDesc
|
||
|
)
|
||
|
|
||
|
func file_common_matcher_domain_domain_proto_rawDescGZIP() []byte {
|
||
|
file_common_matcher_domain_domain_proto_rawDescOnce.Do(func() {
|
||
|
file_common_matcher_domain_domain_proto_rawDescData = protoimpl.X.CompressGZIP(file_common_matcher_domain_domain_proto_rawDescData)
|
||
|
})
|
||
|
return file_common_matcher_domain_domain_proto_rawDescData
|
||
|
}
|
||
|
|
||
|
var file_common_matcher_domain_domain_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
|
||
|
var file_common_matcher_domain_domain_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
||
|
var file_common_matcher_domain_domain_proto_goTypes = []interface{}{
|
||
|
(MatchingType)(0), // 0: xray.common.matcher.domain.MatchingType
|
||
|
(*Domain)(nil), // 1: xray.common.matcher.domain.Domain
|
||
|
}
|
||
|
var file_common_matcher_domain_domain_proto_depIdxs = []int32{
|
||
|
0, // 0: xray.common.matcher.domain.Domain.type:type_name -> xray.common.matcher.domain.MatchingType
|
||
|
1, // [1:1] is the sub-list for method output_type
|
||
|
1, // [1:1] is the sub-list for method input_type
|
||
|
1, // [1:1] is the sub-list for extension type_name
|
||
|
1, // [1:1] is the sub-list for extension extendee
|
||
|
0, // [0:1] is the sub-list for field type_name
|
||
|
}
|
||
|
|
||
|
func init() { file_common_matcher_domain_domain_proto_init() }
|
||
|
func file_common_matcher_domain_domain_proto_init() {
|
||
|
if File_common_matcher_domain_domain_proto != nil {
|
||
|
return
|
||
|
}
|
||
|
if !protoimpl.UnsafeEnabled {
|
||
|
file_common_matcher_domain_domain_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
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
type x struct{}
|
||
|
out := protoimpl.TypeBuilder{
|
||
|
File: protoimpl.DescBuilder{
|
||
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||
|
RawDescriptor: file_common_matcher_domain_domain_proto_rawDesc,
|
||
|
NumEnums: 1,
|
||
|
NumMessages: 1,
|
||
|
NumExtensions: 0,
|
||
|
NumServices: 0,
|
||
|
},
|
||
|
GoTypes: file_common_matcher_domain_domain_proto_goTypes,
|
||
|
DependencyIndexes: file_common_matcher_domain_domain_proto_depIdxs,
|
||
|
EnumInfos: file_common_matcher_domain_domain_proto_enumTypes,
|
||
|
MessageInfos: file_common_matcher_domain_domain_proto_msgTypes,
|
||
|
}.Build()
|
||
|
File_common_matcher_domain_domain_proto = out.File
|
||
|
file_common_matcher_domain_domain_proto_rawDesc = nil
|
||
|
file_common_matcher_domain_domain_proto_goTypes = nil
|
||
|
file_common_matcher_domain_domain_proto_depIdxs = nil
|
||
|
}
|