fakedns.pb.go 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.25.0
  4. // protoc v3.14.0
  5. // source: app/dns/fakedns/fakedns.proto
  6. package fakedns
  7. import (
  8. proto "github.com/golang/protobuf/proto"
  9. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  10. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  11. reflect "reflect"
  12. sync "sync"
  13. )
  14. const (
  15. // Verify that this generated code is sufficiently up-to-date.
  16. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  17. // Verify that runtime/protoimpl is sufficiently up-to-date.
  18. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  19. )
  20. // This is a compile-time assertion that a sufficiently up-to-date version
  21. // of the legacy proto package is being used.
  22. const _ = proto.ProtoPackageIsVersion4
  23. type FakeDnsPool struct {
  24. state protoimpl.MessageState
  25. sizeCache protoimpl.SizeCache
  26. unknownFields protoimpl.UnknownFields
  27. IpPool string `protobuf:"bytes,1,opt,name=ip_pool,json=ipPool,proto3" json:"ip_pool,omitempty"` //CIDR of IP pool used as fake DNS IP
  28. LruSize int64 `protobuf:"varint,2,opt,name=lruSize,proto3" json:"lruSize,omitempty"` //Size of Pool for remembering relationship between domain name and IP address
  29. }
  30. func (x *FakeDnsPool) Reset() {
  31. *x = FakeDnsPool{}
  32. if protoimpl.UnsafeEnabled {
  33. mi := &file_app_dns_fakedns_fakedns_proto_msgTypes[0]
  34. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  35. ms.StoreMessageInfo(mi)
  36. }
  37. }
  38. func (x *FakeDnsPool) String() string {
  39. return protoimpl.X.MessageStringOf(x)
  40. }
  41. func (*FakeDnsPool) ProtoMessage() {}
  42. func (x *FakeDnsPool) ProtoReflect() protoreflect.Message {
  43. mi := &file_app_dns_fakedns_fakedns_proto_msgTypes[0]
  44. if protoimpl.UnsafeEnabled && x != nil {
  45. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  46. if ms.LoadMessageInfo() == nil {
  47. ms.StoreMessageInfo(mi)
  48. }
  49. return ms
  50. }
  51. return mi.MessageOf(x)
  52. }
  53. // Deprecated: Use FakeDnsPool.ProtoReflect.Descriptor instead.
  54. func (*FakeDnsPool) Descriptor() ([]byte, []int) {
  55. return file_app_dns_fakedns_fakedns_proto_rawDescGZIP(), []int{0}
  56. }
  57. func (x *FakeDnsPool) GetIpPool() string {
  58. if x != nil {
  59. return x.IpPool
  60. }
  61. return ""
  62. }
  63. func (x *FakeDnsPool) GetLruSize() int64 {
  64. if x != nil {
  65. return x.LruSize
  66. }
  67. return 0
  68. }
  69. var File_app_dns_fakedns_fakedns_proto protoreflect.FileDescriptor
  70. var file_app_dns_fakedns_fakedns_proto_rawDesc = []byte{
  71. 0x0a, 0x1d, 0x61, 0x70, 0x70, 0x2f, 0x64, 0x6e, 0x73, 0x2f, 0x66, 0x61, 0x6b, 0x65, 0x64, 0x6e,
  72. 0x73, 0x2f, 0x66, 0x61, 0x6b, 0x65, 0x64, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
  73. 0x1a, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x61, 0x70, 0x70, 0x2e,
  74. 0x64, 0x6e, 0x73, 0x2e, 0x66, 0x61, 0x6b, 0x65, 0x64, 0x6e, 0x73, 0x22, 0x40, 0x0a, 0x0b, 0x46,
  75. 0x61, 0x6b, 0x65, 0x44, 0x6e, 0x73, 0x50, 0x6f, 0x6f, 0x6c, 0x12, 0x17, 0x0a, 0x07, 0x69, 0x70,
  76. 0x5f, 0x70, 0x6f, 0x6f, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x69, 0x70, 0x50,
  77. 0x6f, 0x6f, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x6c, 0x72, 0x75, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x02,
  78. 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6c, 0x72, 0x75, 0x53, 0x69, 0x7a, 0x65, 0x42, 0x5f, 0x0a,
  79. 0x1e, 0x63, 0x6f, 0x6d, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e,
  80. 0x61, 0x70, 0x70, 0x2e, 0x64, 0x6e, 0x73, 0x2e, 0x66, 0x61, 0x6b, 0x65, 0x64, 0x6e, 0x73, 0x50,
  81. 0x01, 0x5a, 0x1e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72,
  82. 0x65, 0x2f, 0x61, 0x70, 0x70, 0x2f, 0x64, 0x6e, 0x73, 0x2f, 0x66, 0x61, 0x6b, 0x65, 0x64, 0x6e,
  83. 0x73, 0xaa, 0x02, 0x1a, 0x56, 0x32, 0x52, 0x61, 0x79, 0x2e, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x41,
  84. 0x70, 0x70, 0x2e, 0x44, 0x6e, 0x73, 0x2e, 0x46, 0x61, 0x6b, 0x65, 0x64, 0x6e, 0x73, 0x62, 0x06,
  85. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  86. }
  87. var (
  88. file_app_dns_fakedns_fakedns_proto_rawDescOnce sync.Once
  89. file_app_dns_fakedns_fakedns_proto_rawDescData = file_app_dns_fakedns_fakedns_proto_rawDesc
  90. )
  91. func file_app_dns_fakedns_fakedns_proto_rawDescGZIP() []byte {
  92. file_app_dns_fakedns_fakedns_proto_rawDescOnce.Do(func() {
  93. file_app_dns_fakedns_fakedns_proto_rawDescData = protoimpl.X.CompressGZIP(file_app_dns_fakedns_fakedns_proto_rawDescData)
  94. })
  95. return file_app_dns_fakedns_fakedns_proto_rawDescData
  96. }
  97. var file_app_dns_fakedns_fakedns_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
  98. var file_app_dns_fakedns_fakedns_proto_goTypes = []interface{}{
  99. (*FakeDnsPool)(nil), // 0: v2ray.core.app.dns.fakedns.FakeDnsPool
  100. }
  101. var file_app_dns_fakedns_fakedns_proto_depIdxs = []int32{
  102. 0, // [0:0] is the sub-list for method output_type
  103. 0, // [0:0] is the sub-list for method input_type
  104. 0, // [0:0] is the sub-list for extension type_name
  105. 0, // [0:0] is the sub-list for extension extendee
  106. 0, // [0:0] is the sub-list for field type_name
  107. }
  108. func init() { file_app_dns_fakedns_fakedns_proto_init() }
  109. func file_app_dns_fakedns_fakedns_proto_init() {
  110. if File_app_dns_fakedns_fakedns_proto != nil {
  111. return
  112. }
  113. if !protoimpl.UnsafeEnabled {
  114. file_app_dns_fakedns_fakedns_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  115. switch v := v.(*FakeDnsPool); i {
  116. case 0:
  117. return &v.state
  118. case 1:
  119. return &v.sizeCache
  120. case 2:
  121. return &v.unknownFields
  122. default:
  123. return nil
  124. }
  125. }
  126. }
  127. type x struct{}
  128. out := protoimpl.TypeBuilder{
  129. File: protoimpl.DescBuilder{
  130. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  131. RawDescriptor: file_app_dns_fakedns_fakedns_proto_rawDesc,
  132. NumEnums: 0,
  133. NumMessages: 1,
  134. NumExtensions: 0,
  135. NumServices: 0,
  136. },
  137. GoTypes: file_app_dns_fakedns_fakedns_proto_goTypes,
  138. DependencyIndexes: file_app_dns_fakedns_fakedns_proto_depIdxs,
  139. MessageInfos: file_app_dns_fakedns_fakedns_proto_msgTypes,
  140. }.Build()
  141. File_app_dns_fakedns_fakedns_proto = out.File
  142. file_app_dns_fakedns_fakedns_proto_rawDesc = nil
  143. file_app_dns_fakedns_fakedns_proto_goTypes = nil
  144. file_app_dns_fakedns_fakedns_proto_depIdxs = nil
  145. }