config.pb.go 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.35.1
  4. // protoc v5.28.2
  5. // source: core/config.proto
  6. package core
  7. import (
  8. serial "github.com/xtls/xray-core/common/serial"
  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. // Config is the master config of Xray. Xray takes this config as input and
  21. // functions accordingly.
  22. type Config struct {
  23. state protoimpl.MessageState
  24. sizeCache protoimpl.SizeCache
  25. unknownFields protoimpl.UnknownFields
  26. // Inbound handler configurations. Must have at least one item.
  27. Inbound []*InboundHandlerConfig `protobuf:"bytes,1,rep,name=inbound,proto3" json:"inbound,omitempty"`
  28. // Outbound handler configurations. Must have at least one item. The first
  29. // item is used as default for routing.
  30. Outbound []*OutboundHandlerConfig `protobuf:"bytes,2,rep,name=outbound,proto3" json:"outbound,omitempty"`
  31. // App is for configurations of all features in Xray. A feature must
  32. // implement the Feature interface, and its config type must be registered
  33. // through common.RegisterConfig.
  34. App []*serial.TypedMessage `protobuf:"bytes,4,rep,name=app,proto3" json:"app,omitempty"`
  35. // Configuration for extensions. The config may not work if corresponding
  36. // extension is not loaded into Xray. Xray will ignore such config during
  37. // initialization.
  38. Extension []*serial.TypedMessage `protobuf:"bytes,6,rep,name=extension,proto3" json:"extension,omitempty"`
  39. }
  40. func (x *Config) Reset() {
  41. *x = Config{}
  42. mi := &file_core_config_proto_msgTypes[0]
  43. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  44. ms.StoreMessageInfo(mi)
  45. }
  46. func (x *Config) String() string {
  47. return protoimpl.X.MessageStringOf(x)
  48. }
  49. func (*Config) ProtoMessage() {}
  50. func (x *Config) ProtoReflect() protoreflect.Message {
  51. mi := &file_core_config_proto_msgTypes[0]
  52. if x != nil {
  53. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  54. if ms.LoadMessageInfo() == nil {
  55. ms.StoreMessageInfo(mi)
  56. }
  57. return ms
  58. }
  59. return mi.MessageOf(x)
  60. }
  61. // Deprecated: Use Config.ProtoReflect.Descriptor instead.
  62. func (*Config) Descriptor() ([]byte, []int) {
  63. return file_core_config_proto_rawDescGZIP(), []int{0}
  64. }
  65. func (x *Config) GetInbound() []*InboundHandlerConfig {
  66. if x != nil {
  67. return x.Inbound
  68. }
  69. return nil
  70. }
  71. func (x *Config) GetOutbound() []*OutboundHandlerConfig {
  72. if x != nil {
  73. return x.Outbound
  74. }
  75. return nil
  76. }
  77. func (x *Config) GetApp() []*serial.TypedMessage {
  78. if x != nil {
  79. return x.App
  80. }
  81. return nil
  82. }
  83. func (x *Config) GetExtension() []*serial.TypedMessage {
  84. if x != nil {
  85. return x.Extension
  86. }
  87. return nil
  88. }
  89. // InboundHandlerConfig is the configuration for inbound handler.
  90. type InboundHandlerConfig struct {
  91. state protoimpl.MessageState
  92. sizeCache protoimpl.SizeCache
  93. unknownFields protoimpl.UnknownFields
  94. // Tag of the inbound handler. The tag must be unique among all inbound
  95. // handlers
  96. Tag string `protobuf:"bytes,1,opt,name=tag,proto3" json:"tag,omitempty"`
  97. // Settings for how this inbound proxy is handled.
  98. ReceiverSettings *serial.TypedMessage `protobuf:"bytes,2,opt,name=receiver_settings,json=receiverSettings,proto3" json:"receiver_settings,omitempty"`
  99. // Settings for inbound proxy. Must be one of the inbound proxies.
  100. ProxySettings *serial.TypedMessage `protobuf:"bytes,3,opt,name=proxy_settings,json=proxySettings,proto3" json:"proxy_settings,omitempty"`
  101. }
  102. func (x *InboundHandlerConfig) Reset() {
  103. *x = InboundHandlerConfig{}
  104. mi := &file_core_config_proto_msgTypes[1]
  105. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  106. ms.StoreMessageInfo(mi)
  107. }
  108. func (x *InboundHandlerConfig) String() string {
  109. return protoimpl.X.MessageStringOf(x)
  110. }
  111. func (*InboundHandlerConfig) ProtoMessage() {}
  112. func (x *InboundHandlerConfig) ProtoReflect() protoreflect.Message {
  113. mi := &file_core_config_proto_msgTypes[1]
  114. if x != nil {
  115. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  116. if ms.LoadMessageInfo() == nil {
  117. ms.StoreMessageInfo(mi)
  118. }
  119. return ms
  120. }
  121. return mi.MessageOf(x)
  122. }
  123. // Deprecated: Use InboundHandlerConfig.ProtoReflect.Descriptor instead.
  124. func (*InboundHandlerConfig) Descriptor() ([]byte, []int) {
  125. return file_core_config_proto_rawDescGZIP(), []int{1}
  126. }
  127. func (x *InboundHandlerConfig) GetTag() string {
  128. if x != nil {
  129. return x.Tag
  130. }
  131. return ""
  132. }
  133. func (x *InboundHandlerConfig) GetReceiverSettings() *serial.TypedMessage {
  134. if x != nil {
  135. return x.ReceiverSettings
  136. }
  137. return nil
  138. }
  139. func (x *InboundHandlerConfig) GetProxySettings() *serial.TypedMessage {
  140. if x != nil {
  141. return x.ProxySettings
  142. }
  143. return nil
  144. }
  145. // OutboundHandlerConfig is the configuration for outbound handler.
  146. type OutboundHandlerConfig struct {
  147. state protoimpl.MessageState
  148. sizeCache protoimpl.SizeCache
  149. unknownFields protoimpl.UnknownFields
  150. // Tag of this outbound handler.
  151. Tag string `protobuf:"bytes,1,opt,name=tag,proto3" json:"tag,omitempty"`
  152. // Settings for how to dial connection for this outbound handler.
  153. SenderSettings *serial.TypedMessage `protobuf:"bytes,2,opt,name=sender_settings,json=senderSettings,proto3" json:"sender_settings,omitempty"`
  154. // Settings for this outbound proxy. Must be one of the outbound proxies.
  155. ProxySettings *serial.TypedMessage `protobuf:"bytes,3,opt,name=proxy_settings,json=proxySettings,proto3" json:"proxy_settings,omitempty"`
  156. // If not zero, this outbound will be expired in seconds. Not used for now.
  157. Expire int64 `protobuf:"varint,4,opt,name=expire,proto3" json:"expire,omitempty"`
  158. // Comment of this outbound handler. Not used for now.
  159. Comment string `protobuf:"bytes,5,opt,name=comment,proto3" json:"comment,omitempty"`
  160. }
  161. func (x *OutboundHandlerConfig) Reset() {
  162. *x = OutboundHandlerConfig{}
  163. mi := &file_core_config_proto_msgTypes[2]
  164. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  165. ms.StoreMessageInfo(mi)
  166. }
  167. func (x *OutboundHandlerConfig) String() string {
  168. return protoimpl.X.MessageStringOf(x)
  169. }
  170. func (*OutboundHandlerConfig) ProtoMessage() {}
  171. func (x *OutboundHandlerConfig) ProtoReflect() protoreflect.Message {
  172. mi := &file_core_config_proto_msgTypes[2]
  173. if x != nil {
  174. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  175. if ms.LoadMessageInfo() == nil {
  176. ms.StoreMessageInfo(mi)
  177. }
  178. return ms
  179. }
  180. return mi.MessageOf(x)
  181. }
  182. // Deprecated: Use OutboundHandlerConfig.ProtoReflect.Descriptor instead.
  183. func (*OutboundHandlerConfig) Descriptor() ([]byte, []int) {
  184. return file_core_config_proto_rawDescGZIP(), []int{2}
  185. }
  186. func (x *OutboundHandlerConfig) GetTag() string {
  187. if x != nil {
  188. return x.Tag
  189. }
  190. return ""
  191. }
  192. func (x *OutboundHandlerConfig) GetSenderSettings() *serial.TypedMessage {
  193. if x != nil {
  194. return x.SenderSettings
  195. }
  196. return nil
  197. }
  198. func (x *OutboundHandlerConfig) GetProxySettings() *serial.TypedMessage {
  199. if x != nil {
  200. return x.ProxySettings
  201. }
  202. return nil
  203. }
  204. func (x *OutboundHandlerConfig) GetExpire() int64 {
  205. if x != nil {
  206. return x.Expire
  207. }
  208. return 0
  209. }
  210. func (x *OutboundHandlerConfig) GetComment() string {
  211. if x != nil {
  212. return x.Comment
  213. }
  214. return ""
  215. }
  216. var File_core_config_proto protoreflect.FileDescriptor
  217. var file_core_config_proto_rawDesc = []byte{
  218. 0x0a, 0x11, 0x63, 0x6f, 0x72, 0x65, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x70, 0x72,
  219. 0x6f, 0x74, 0x6f, 0x12, 0x09, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x1a, 0x21,
  220. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x2f, 0x74, 0x79,
  221. 0x70, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  222. 0x6f, 0x22, 0xfb, 0x01, 0x0a, 0x06, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x39, 0x0a, 0x07,
  223. 0x69, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1f, 0x2e,
  224. 0x78, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e,
  225. 0x64, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x07,
  226. 0x69, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x12, 0x3c, 0x0a, 0x08, 0x6f, 0x75, 0x74, 0x62, 0x6f,
  227. 0x75, 0x6e, 0x64, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x78, 0x72, 0x61, 0x79,
  228. 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x48, 0x61,
  229. 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x08, 0x6f, 0x75, 0x74,
  230. 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x12, 0x32, 0x0a, 0x03, 0x61, 0x70, 0x70, 0x18, 0x04, 0x20, 0x03,
  231. 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  232. 0x2e, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x54, 0x79, 0x70, 0x65, 0x64, 0x4d, 0x65, 0x73,
  233. 0x73, 0x61, 0x67, 0x65, 0x52, 0x03, 0x61, 0x70, 0x70, 0x12, 0x3e, 0x0a, 0x09, 0x65, 0x78, 0x74,
  234. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x78,
  235. 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x73, 0x65, 0x72, 0x69, 0x61,
  236. 0x6c, 0x2e, 0x54, 0x79, 0x70, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x09,
  237. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x4a, 0x04, 0x08, 0x03, 0x10, 0x04, 0x22,
  238. 0xc0, 0x01, 0x0a, 0x14, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x48, 0x61, 0x6e, 0x64, 0x6c,
  239. 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x61, 0x67, 0x18,
  240. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x61, 0x67, 0x12, 0x4d, 0x0a, 0x11, 0x72, 0x65,
  241. 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18,
  242. 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x6d,
  243. 0x6d, 0x6f, 0x6e, 0x2e, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x54, 0x79, 0x70, 0x65, 0x64,
  244. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x10, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65,
  245. 0x72, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x47, 0x0a, 0x0e, 0x70, 0x72, 0x6f,
  246. 0x78, 0x79, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28,
  247. 0x0b, 0x32, 0x20, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  248. 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x54, 0x79, 0x70, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73,
  249. 0x61, 0x67, 0x65, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e,
  250. 0x67, 0x73, 0x22, 0xef, 0x01, 0x0a, 0x15, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x48,
  251. 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x10, 0x0a, 0x03,
  252. 0x74, 0x61, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x61, 0x67, 0x12, 0x49,
  253. 0x0a, 0x0f, 0x73, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67,
  254. 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x63,
  255. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x54, 0x79, 0x70,
  256. 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x0e, 0x73, 0x65, 0x6e, 0x64, 0x65,
  257. 0x72, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x47, 0x0a, 0x0e, 0x70, 0x72, 0x6f,
  258. 0x78, 0x79, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28,
  259. 0x0b, 0x32, 0x20, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  260. 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x54, 0x79, 0x70, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73,
  261. 0x61, 0x67, 0x65, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e,
  262. 0x67, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01,
  263. 0x28, 0x03, 0x52, 0x06, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f,
  264. 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6d,
  265. 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x3d, 0x0a, 0x0d, 0x63, 0x6f, 0x6d, 0x2e, 0x78, 0x72, 0x61, 0x79,
  266. 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x50, 0x01, 0x5a, 0x1e, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e,
  267. 0x63, 0x6f, 0x6d, 0x2f, 0x78, 0x74, 0x6c, 0x73, 0x2f, 0x78, 0x72, 0x61, 0x79, 0x2d, 0x63, 0x6f,
  268. 0x72, 0x65, 0x2f, 0x63, 0x6f, 0x72, 0x65, 0xaa, 0x02, 0x09, 0x58, 0x72, 0x61, 0x79, 0x2e, 0x43,
  269. 0x6f, 0x72, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  270. }
  271. var (
  272. file_core_config_proto_rawDescOnce sync.Once
  273. file_core_config_proto_rawDescData = file_core_config_proto_rawDesc
  274. )
  275. func file_core_config_proto_rawDescGZIP() []byte {
  276. file_core_config_proto_rawDescOnce.Do(func() {
  277. file_core_config_proto_rawDescData = protoimpl.X.CompressGZIP(file_core_config_proto_rawDescData)
  278. })
  279. return file_core_config_proto_rawDescData
  280. }
  281. var file_core_config_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
  282. var file_core_config_proto_goTypes = []any{
  283. (*Config)(nil), // 0: xray.core.Config
  284. (*InboundHandlerConfig)(nil), // 1: xray.core.InboundHandlerConfig
  285. (*OutboundHandlerConfig)(nil), // 2: xray.core.OutboundHandlerConfig
  286. (*serial.TypedMessage)(nil), // 3: xray.common.serial.TypedMessage
  287. }
  288. var file_core_config_proto_depIdxs = []int32{
  289. 1, // 0: xray.core.Config.inbound:type_name -> xray.core.InboundHandlerConfig
  290. 2, // 1: xray.core.Config.outbound:type_name -> xray.core.OutboundHandlerConfig
  291. 3, // 2: xray.core.Config.app:type_name -> xray.common.serial.TypedMessage
  292. 3, // 3: xray.core.Config.extension:type_name -> xray.common.serial.TypedMessage
  293. 3, // 4: xray.core.InboundHandlerConfig.receiver_settings:type_name -> xray.common.serial.TypedMessage
  294. 3, // 5: xray.core.InboundHandlerConfig.proxy_settings:type_name -> xray.common.serial.TypedMessage
  295. 3, // 6: xray.core.OutboundHandlerConfig.sender_settings:type_name -> xray.common.serial.TypedMessage
  296. 3, // 7: xray.core.OutboundHandlerConfig.proxy_settings:type_name -> xray.common.serial.TypedMessage
  297. 8, // [8:8] is the sub-list for method output_type
  298. 8, // [8:8] is the sub-list for method input_type
  299. 8, // [8:8] is the sub-list for extension type_name
  300. 8, // [8:8] is the sub-list for extension extendee
  301. 0, // [0:8] is the sub-list for field type_name
  302. }
  303. func init() { file_core_config_proto_init() }
  304. func file_core_config_proto_init() {
  305. if File_core_config_proto != nil {
  306. return
  307. }
  308. type x struct{}
  309. out := protoimpl.TypeBuilder{
  310. File: protoimpl.DescBuilder{
  311. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  312. RawDescriptor: file_core_config_proto_rawDesc,
  313. NumEnums: 0,
  314. NumMessages: 3,
  315. NumExtensions: 0,
  316. NumServices: 0,
  317. },
  318. GoTypes: file_core_config_proto_goTypes,
  319. DependencyIndexes: file_core_config_proto_depIdxs,
  320. MessageInfos: file_core_config_proto_msgTypes,
  321. }.Build()
  322. File_core_config_proto = out.File
  323. file_core_config_proto_rawDesc = nil
  324. file_core_config_proto_goTypes = nil
  325. file_core_config_proto_depIdxs = nil
  326. }