extensions.pb.go 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  1. package protoext
  2. import (
  3. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  4. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  5. descriptorpb "google.golang.org/protobuf/types/descriptorpb"
  6. reflect "reflect"
  7. sync "sync"
  8. unsafe "unsafe"
  9. )
  10. const (
  11. // Verify that this generated code is sufficiently up-to-date.
  12. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  13. // Verify that runtime/protoimpl is sufficiently up-to-date.
  14. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  15. )
  16. type MessageOpt struct {
  17. state protoimpl.MessageState `protogen:"open.v1"`
  18. Type []string `protobuf:"bytes,1,rep,name=type,proto3" json:"type,omitempty"`
  19. ShortName []string `protobuf:"bytes,2,rep,name=short_name,json=shortName,proto3" json:"short_name,omitempty"`
  20. TransportOriginalName string `protobuf:"bytes,86001,opt,name=transport_original_name,json=transportOriginalName,proto3" json:"transport_original_name,omitempty"`
  21. // allow_restricted_mode_load allow this config to be loaded in restricted mode
  22. // this is typically used when a an attacker can control the content
  23. AllowRestrictedModeLoad bool `protobuf:"varint,86002,opt,name=allow_restricted_mode_load,json=allowRestrictedModeLoad,proto3" json:"allow_restricted_mode_load,omitempty"`
  24. unknownFields protoimpl.UnknownFields
  25. sizeCache protoimpl.SizeCache
  26. }
  27. func (x *MessageOpt) Reset() {
  28. *x = MessageOpt{}
  29. mi := &file_common_protoext_extensions_proto_msgTypes[0]
  30. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  31. ms.StoreMessageInfo(mi)
  32. }
  33. func (x *MessageOpt) String() string {
  34. return protoimpl.X.MessageStringOf(x)
  35. }
  36. func (*MessageOpt) ProtoMessage() {}
  37. func (x *MessageOpt) ProtoReflect() protoreflect.Message {
  38. mi := &file_common_protoext_extensions_proto_msgTypes[0]
  39. if x != nil {
  40. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  41. if ms.LoadMessageInfo() == nil {
  42. ms.StoreMessageInfo(mi)
  43. }
  44. return ms
  45. }
  46. return mi.MessageOf(x)
  47. }
  48. // Deprecated: Use MessageOpt.ProtoReflect.Descriptor instead.
  49. func (*MessageOpt) Descriptor() ([]byte, []int) {
  50. return file_common_protoext_extensions_proto_rawDescGZIP(), []int{0}
  51. }
  52. func (x *MessageOpt) GetType() []string {
  53. if x != nil {
  54. return x.Type
  55. }
  56. return nil
  57. }
  58. func (x *MessageOpt) GetShortName() []string {
  59. if x != nil {
  60. return x.ShortName
  61. }
  62. return nil
  63. }
  64. func (x *MessageOpt) GetTransportOriginalName() string {
  65. if x != nil {
  66. return x.TransportOriginalName
  67. }
  68. return ""
  69. }
  70. func (x *MessageOpt) GetAllowRestrictedModeLoad() bool {
  71. if x != nil {
  72. return x.AllowRestrictedModeLoad
  73. }
  74. return false
  75. }
  76. type FieldOpt struct {
  77. state protoimpl.MessageState `protogen:"open.v1"`
  78. AnyWants []string `protobuf:"bytes,1,rep,name=any_wants,json=anyWants,proto3" json:"any_wants,omitempty"`
  79. AllowedValues []string `protobuf:"bytes,2,rep,name=allowed_values,json=allowedValues,proto3" json:"allowed_values,omitempty"`
  80. AllowedValueTypes []string `protobuf:"bytes,3,rep,name=allowed_value_types,json=allowedValueTypes,proto3" json:"allowed_value_types,omitempty"`
  81. // convert_time_read_file_into read a file into another field, and clear this field during input parsing
  82. ConvertTimeReadFileInto string `protobuf:"bytes,4,opt,name=convert_time_read_file_into,json=convertTimeReadFileInto,proto3" json:"convert_time_read_file_into,omitempty"`
  83. // forbidden marks a boolean to be inaccessible to user
  84. Forbidden bool `protobuf:"varint,5,opt,name=forbidden,proto3" json:"forbidden,omitempty"`
  85. // convert_time_resource_loading read a file, and place its resource hash into another field
  86. ConvertTimeResourceLoading string `protobuf:"bytes,6,opt,name=convert_time_resource_loading,json=convertTimeResourceLoading,proto3" json:"convert_time_resource_loading,omitempty"`
  87. // convert_time_parse_ip parse a string ip address, and put its binary representation into another field
  88. ConvertTimeParseIp string `protobuf:"bytes,7,opt,name=convert_time_parse_ip,json=convertTimeParseIp,proto3" json:"convert_time_parse_ip,omitempty"`
  89. unknownFields protoimpl.UnknownFields
  90. sizeCache protoimpl.SizeCache
  91. }
  92. func (x *FieldOpt) Reset() {
  93. *x = FieldOpt{}
  94. mi := &file_common_protoext_extensions_proto_msgTypes[1]
  95. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  96. ms.StoreMessageInfo(mi)
  97. }
  98. func (x *FieldOpt) String() string {
  99. return protoimpl.X.MessageStringOf(x)
  100. }
  101. func (*FieldOpt) ProtoMessage() {}
  102. func (x *FieldOpt) ProtoReflect() protoreflect.Message {
  103. mi := &file_common_protoext_extensions_proto_msgTypes[1]
  104. if x != nil {
  105. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  106. if ms.LoadMessageInfo() == nil {
  107. ms.StoreMessageInfo(mi)
  108. }
  109. return ms
  110. }
  111. return mi.MessageOf(x)
  112. }
  113. // Deprecated: Use FieldOpt.ProtoReflect.Descriptor instead.
  114. func (*FieldOpt) Descriptor() ([]byte, []int) {
  115. return file_common_protoext_extensions_proto_rawDescGZIP(), []int{1}
  116. }
  117. func (x *FieldOpt) GetAnyWants() []string {
  118. if x != nil {
  119. return x.AnyWants
  120. }
  121. return nil
  122. }
  123. func (x *FieldOpt) GetAllowedValues() []string {
  124. if x != nil {
  125. return x.AllowedValues
  126. }
  127. return nil
  128. }
  129. func (x *FieldOpt) GetAllowedValueTypes() []string {
  130. if x != nil {
  131. return x.AllowedValueTypes
  132. }
  133. return nil
  134. }
  135. func (x *FieldOpt) GetConvertTimeReadFileInto() string {
  136. if x != nil {
  137. return x.ConvertTimeReadFileInto
  138. }
  139. return ""
  140. }
  141. func (x *FieldOpt) GetForbidden() bool {
  142. if x != nil {
  143. return x.Forbidden
  144. }
  145. return false
  146. }
  147. func (x *FieldOpt) GetConvertTimeResourceLoading() string {
  148. if x != nil {
  149. return x.ConvertTimeResourceLoading
  150. }
  151. return ""
  152. }
  153. func (x *FieldOpt) GetConvertTimeParseIp() string {
  154. if x != nil {
  155. return x.ConvertTimeParseIp
  156. }
  157. return ""
  158. }
  159. var file_common_protoext_extensions_proto_extTypes = []protoimpl.ExtensionInfo{
  160. {
  161. ExtendedType: (*descriptorpb.MessageOptions)(nil),
  162. ExtensionType: (*MessageOpt)(nil),
  163. Field: 50000,
  164. Name: "v2ray.core.common.protoext.message_opt",
  165. Tag: "bytes,50000,opt,name=message_opt",
  166. Filename: "common/protoext/extensions.proto",
  167. },
  168. {
  169. ExtendedType: (*descriptorpb.FieldOptions)(nil),
  170. ExtensionType: (*FieldOpt)(nil),
  171. Field: 50000,
  172. Name: "v2ray.core.common.protoext.field_opt",
  173. Tag: "bytes,50000,opt,name=field_opt",
  174. Filename: "common/protoext/extensions.proto",
  175. },
  176. }
  177. // Extension fields to descriptorpb.MessageOptions.
  178. var (
  179. // optional v2ray.core.common.protoext.MessageOpt message_opt = 50000;
  180. E_MessageOpt = &file_common_protoext_extensions_proto_extTypes[0]
  181. )
  182. // Extension fields to descriptorpb.FieldOptions.
  183. var (
  184. // optional v2ray.core.common.protoext.FieldOpt field_opt = 50000;
  185. E_FieldOpt = &file_common_protoext_extensions_proto_extTypes[1]
  186. )
  187. var File_common_protoext_extensions_proto protoreflect.FileDescriptor
  188. var file_common_protoext_extensions_proto_rawDesc = string([]byte{
  189. 0x0a, 0x20, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x65, 0x78,
  190. 0x74, 0x2f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f,
  191. 0x74, 0x6f, 0x12, 0x1a, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x63,
  192. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x65, 0x78, 0x74, 0x1a, 0x20,
  193. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f,
  194. 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  195. 0x22, 0xb8, 0x01, 0x0a, 0x0a, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x4f, 0x70, 0x74, 0x12,
  196. 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x74,
  197. 0x79, 0x70, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x68, 0x6f, 0x72, 0x74, 0x5f, 0x6e, 0x61, 0x6d,
  198. 0x65, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x73, 0x68, 0x6f, 0x72, 0x74, 0x4e, 0x61,
  199. 0x6d, 0x65, 0x12, 0x38, 0x0a, 0x17, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74, 0x5f,
  200. 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0xf1, 0x9f,
  201. 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74,
  202. 0x4f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x3d, 0x0a, 0x1a,
  203. 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x72, 0x65, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x65, 0x64,
  204. 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x5f, 0x6c, 0x6f, 0x61, 0x64, 0x18, 0xf2, 0x9f, 0x05, 0x20, 0x01,
  205. 0x28, 0x08, 0x52, 0x17, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x73, 0x74, 0x72, 0x69, 0x63,
  206. 0x74, 0x65, 0x64, 0x4d, 0x6f, 0x64, 0x65, 0x4c, 0x6f, 0x61, 0x64, 0x22, 0xd0, 0x02, 0x0a, 0x08,
  207. 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4f, 0x70, 0x74, 0x12, 0x1b, 0x0a, 0x09, 0x61, 0x6e, 0x79, 0x5f,
  208. 0x77, 0x61, 0x6e, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x61, 0x6e, 0x79,
  209. 0x57, 0x61, 0x6e, 0x74, 0x73, 0x12, 0x25, 0x0a, 0x0e, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x65, 0x64,
  210. 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0d, 0x61,
  211. 0x6c, 0x6c, 0x6f, 0x77, 0x65, 0x64, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x73, 0x12, 0x2e, 0x0a, 0x13,
  212. 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x65, 0x64, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x74, 0x79,
  213. 0x70, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x11, 0x61, 0x6c, 0x6c, 0x6f, 0x77,
  214. 0x65, 0x64, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x3c, 0x0a, 0x1b,
  215. 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x72, 0x65, 0x61,
  216. 0x64, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x6e, 0x74, 0x6f, 0x18, 0x04, 0x20, 0x01, 0x28,
  217. 0x09, 0x52, 0x17, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65,
  218. 0x61, 0x64, 0x46, 0x69, 0x6c, 0x65, 0x49, 0x6e, 0x74, 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x66, 0x6f,
  219. 0x72, 0x62, 0x69, 0x64, 0x64, 0x65, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x66,
  220. 0x6f, 0x72, 0x62, 0x69, 0x64, 0x64, 0x65, 0x6e, 0x12, 0x41, 0x0a, 0x1d, 0x63, 0x6f, 0x6e, 0x76,
  221. 0x65, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63,
  222. 0x65, 0x5f, 0x6c, 0x6f, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52,
  223. 0x1a, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x52, 0x65, 0x73, 0x6f,
  224. 0x75, 0x72, 0x63, 0x65, 0x4c, 0x6f, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x12, 0x31, 0x0a, 0x15, 0x63,
  225. 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x70, 0x61, 0x72, 0x73,
  226. 0x65, 0x5f, 0x69, 0x70, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x63, 0x6f, 0x6e, 0x76,
  227. 0x65, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x50, 0x61, 0x72, 0x73, 0x65, 0x49, 0x70, 0x3a, 0x6a,
  228. 0x0a, 0x0b, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x6f, 0x70, 0x74, 0x12, 0x1f, 0x2e,
  229. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  230. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xd0,
  231. 0x86, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63,
  232. 0x6f, 0x72, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  233. 0x65, 0x78, 0x74, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x4f, 0x70, 0x74, 0x52, 0x0a,
  234. 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x4f, 0x70, 0x74, 0x3a, 0x62, 0x0a, 0x09, 0x66, 0x69,
  235. 0x65, 0x6c, 0x64, 0x5f, 0x6f, 0x70, 0x74, 0x12, 0x1d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  236. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4f,
  237. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xd0, 0x86, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24,
  238. 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  239. 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x65, 0x78, 0x74, 0x2e, 0x46, 0x69, 0x65, 0x6c,
  240. 0x64, 0x4f, 0x70, 0x74, 0x52, 0x08, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x4f, 0x70, 0x74, 0x42, 0x6f,
  241. 0x0a, 0x1e, 0x63, 0x6f, 0x6d, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65,
  242. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x65, 0x78, 0x74,
  243. 0x50, 0x01, 0x5a, 0x2e, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x76,
  244. 0x32, 0x66, 0x6c, 0x79, 0x2f, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2d, 0x63, 0x6f, 0x72, 0x65, 0x2f,
  245. 0x76, 0x35, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x65,
  246. 0x78, 0x74, 0xaa, 0x02, 0x1a, 0x56, 0x32, 0x52, 0x61, 0x79, 0x2e, 0x43, 0x6f, 0x72, 0x65, 0x2e,
  247. 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x45, 0x78, 0x74, 0x62,
  248. 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  249. })
  250. var (
  251. file_common_protoext_extensions_proto_rawDescOnce sync.Once
  252. file_common_protoext_extensions_proto_rawDescData []byte
  253. )
  254. func file_common_protoext_extensions_proto_rawDescGZIP() []byte {
  255. file_common_protoext_extensions_proto_rawDescOnce.Do(func() {
  256. file_common_protoext_extensions_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_common_protoext_extensions_proto_rawDesc), len(file_common_protoext_extensions_proto_rawDesc)))
  257. })
  258. return file_common_protoext_extensions_proto_rawDescData
  259. }
  260. var file_common_protoext_extensions_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
  261. var file_common_protoext_extensions_proto_goTypes = []any{
  262. (*MessageOpt)(nil), // 0: v2ray.core.common.protoext.MessageOpt
  263. (*FieldOpt)(nil), // 1: v2ray.core.common.protoext.FieldOpt
  264. (*descriptorpb.MessageOptions)(nil), // 2: google.protobuf.MessageOptions
  265. (*descriptorpb.FieldOptions)(nil), // 3: google.protobuf.FieldOptions
  266. }
  267. var file_common_protoext_extensions_proto_depIdxs = []int32{
  268. 2, // 0: v2ray.core.common.protoext.message_opt:extendee -> google.protobuf.MessageOptions
  269. 3, // 1: v2ray.core.common.protoext.field_opt:extendee -> google.protobuf.FieldOptions
  270. 0, // 2: v2ray.core.common.protoext.message_opt:type_name -> v2ray.core.common.protoext.MessageOpt
  271. 1, // 3: v2ray.core.common.protoext.field_opt:type_name -> v2ray.core.common.protoext.FieldOpt
  272. 4, // [4:4] is the sub-list for method output_type
  273. 4, // [4:4] is the sub-list for method input_type
  274. 2, // [2:4] is the sub-list for extension type_name
  275. 0, // [0:2] is the sub-list for extension extendee
  276. 0, // [0:0] is the sub-list for field type_name
  277. }
  278. func init() { file_common_protoext_extensions_proto_init() }
  279. func file_common_protoext_extensions_proto_init() {
  280. if File_common_protoext_extensions_proto != nil {
  281. return
  282. }
  283. type x struct{}
  284. out := protoimpl.TypeBuilder{
  285. File: protoimpl.DescBuilder{
  286. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  287. RawDescriptor: unsafe.Slice(unsafe.StringData(file_common_protoext_extensions_proto_rawDesc), len(file_common_protoext_extensions_proto_rawDesc)),
  288. NumEnums: 0,
  289. NumMessages: 2,
  290. NumExtensions: 2,
  291. NumServices: 0,
  292. },
  293. GoTypes: file_common_protoext_extensions_proto_goTypes,
  294. DependencyIndexes: file_common_protoext_extensions_proto_depIdxs,
  295. MessageInfos: file_common_protoext_extensions_proto_msgTypes,
  296. ExtensionInfos: file_common_protoext_extensions_proto_extTypes,
  297. }.Build()
  298. File_common_protoext_extensions_proto = out.File
  299. file_common_protoext_extensions_proto_goTypes = nil
  300. file_common_protoext_extensions_proto_depIdxs = nil
  301. }