config.pb.go 15 KB

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