config.pb.go 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412
  1. package trojan
  2. import (
  3. packetaddr "github.com/v2fly/v2ray-core/v5/common/net/packetaddr"
  4. protocol "github.com/v2fly/v2ray-core/v5/common/protocol"
  5. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  6. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  7. reflect "reflect"
  8. sync "sync"
  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 Account struct {
  17. state protoimpl.MessageState
  18. sizeCache protoimpl.SizeCache
  19. unknownFields protoimpl.UnknownFields
  20. Password string `protobuf:"bytes,1,opt,name=password,proto3" json:"password,omitempty"`
  21. }
  22. func (x *Account) Reset() {
  23. *x = Account{}
  24. if protoimpl.UnsafeEnabled {
  25. mi := &file_proxy_trojan_config_proto_msgTypes[0]
  26. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  27. ms.StoreMessageInfo(mi)
  28. }
  29. }
  30. func (x *Account) String() string {
  31. return protoimpl.X.MessageStringOf(x)
  32. }
  33. func (*Account) ProtoMessage() {}
  34. func (x *Account) ProtoReflect() protoreflect.Message {
  35. mi := &file_proxy_trojan_config_proto_msgTypes[0]
  36. if protoimpl.UnsafeEnabled && x != nil {
  37. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  38. if ms.LoadMessageInfo() == nil {
  39. ms.StoreMessageInfo(mi)
  40. }
  41. return ms
  42. }
  43. return mi.MessageOf(x)
  44. }
  45. // Deprecated: Use Account.ProtoReflect.Descriptor instead.
  46. func (*Account) Descriptor() ([]byte, []int) {
  47. return file_proxy_trojan_config_proto_rawDescGZIP(), []int{0}
  48. }
  49. func (x *Account) GetPassword() string {
  50. if x != nil {
  51. return x.Password
  52. }
  53. return ""
  54. }
  55. type Fallback struct {
  56. state protoimpl.MessageState
  57. sizeCache protoimpl.SizeCache
  58. unknownFields protoimpl.UnknownFields
  59. Alpn string `protobuf:"bytes,1,opt,name=alpn,proto3" json:"alpn,omitempty"`
  60. Path string `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
  61. Type string `protobuf:"bytes,3,opt,name=type,proto3" json:"type,omitempty"`
  62. Dest string `protobuf:"bytes,4,opt,name=dest,proto3" json:"dest,omitempty"`
  63. Xver uint64 `protobuf:"varint,5,opt,name=xver,proto3" json:"xver,omitempty"`
  64. }
  65. func (x *Fallback) Reset() {
  66. *x = Fallback{}
  67. if protoimpl.UnsafeEnabled {
  68. mi := &file_proxy_trojan_config_proto_msgTypes[1]
  69. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  70. ms.StoreMessageInfo(mi)
  71. }
  72. }
  73. func (x *Fallback) String() string {
  74. return protoimpl.X.MessageStringOf(x)
  75. }
  76. func (*Fallback) ProtoMessage() {}
  77. func (x *Fallback) ProtoReflect() protoreflect.Message {
  78. mi := &file_proxy_trojan_config_proto_msgTypes[1]
  79. if protoimpl.UnsafeEnabled && x != nil {
  80. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  81. if ms.LoadMessageInfo() == nil {
  82. ms.StoreMessageInfo(mi)
  83. }
  84. return ms
  85. }
  86. return mi.MessageOf(x)
  87. }
  88. // Deprecated: Use Fallback.ProtoReflect.Descriptor instead.
  89. func (*Fallback) Descriptor() ([]byte, []int) {
  90. return file_proxy_trojan_config_proto_rawDescGZIP(), []int{1}
  91. }
  92. func (x *Fallback) GetAlpn() string {
  93. if x != nil {
  94. return x.Alpn
  95. }
  96. return ""
  97. }
  98. func (x *Fallback) GetPath() string {
  99. if x != nil {
  100. return x.Path
  101. }
  102. return ""
  103. }
  104. func (x *Fallback) GetType() string {
  105. if x != nil {
  106. return x.Type
  107. }
  108. return ""
  109. }
  110. func (x *Fallback) GetDest() string {
  111. if x != nil {
  112. return x.Dest
  113. }
  114. return ""
  115. }
  116. func (x *Fallback) GetXver() uint64 {
  117. if x != nil {
  118. return x.Xver
  119. }
  120. return 0
  121. }
  122. type ClientConfig struct {
  123. state protoimpl.MessageState
  124. sizeCache protoimpl.SizeCache
  125. unknownFields protoimpl.UnknownFields
  126. Server []*protocol.ServerEndpoint `protobuf:"bytes,1,rep,name=server,proto3" json:"server,omitempty"`
  127. }
  128. func (x *ClientConfig) Reset() {
  129. *x = ClientConfig{}
  130. if protoimpl.UnsafeEnabled {
  131. mi := &file_proxy_trojan_config_proto_msgTypes[2]
  132. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  133. ms.StoreMessageInfo(mi)
  134. }
  135. }
  136. func (x *ClientConfig) String() string {
  137. return protoimpl.X.MessageStringOf(x)
  138. }
  139. func (*ClientConfig) ProtoMessage() {}
  140. func (x *ClientConfig) ProtoReflect() protoreflect.Message {
  141. mi := &file_proxy_trojan_config_proto_msgTypes[2]
  142. if protoimpl.UnsafeEnabled && x != nil {
  143. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  144. if ms.LoadMessageInfo() == nil {
  145. ms.StoreMessageInfo(mi)
  146. }
  147. return ms
  148. }
  149. return mi.MessageOf(x)
  150. }
  151. // Deprecated: Use ClientConfig.ProtoReflect.Descriptor instead.
  152. func (*ClientConfig) Descriptor() ([]byte, []int) {
  153. return file_proxy_trojan_config_proto_rawDescGZIP(), []int{2}
  154. }
  155. func (x *ClientConfig) GetServer() []*protocol.ServerEndpoint {
  156. if x != nil {
  157. return x.Server
  158. }
  159. return nil
  160. }
  161. type ServerConfig struct {
  162. state protoimpl.MessageState
  163. sizeCache protoimpl.SizeCache
  164. unknownFields protoimpl.UnknownFields
  165. Users []*protocol.User `protobuf:"bytes,1,rep,name=users,proto3" json:"users,omitempty"`
  166. Fallbacks []*Fallback `protobuf:"bytes,3,rep,name=fallbacks,proto3" json:"fallbacks,omitempty"`
  167. PacketEncoding packetaddr.PacketAddrType `protobuf:"varint,4,opt,name=packet_encoding,json=packetEncoding,proto3,enum=v2ray.core.net.packetaddr.PacketAddrType" json:"packet_encoding,omitempty"`
  168. }
  169. func (x *ServerConfig) Reset() {
  170. *x = ServerConfig{}
  171. if protoimpl.UnsafeEnabled {
  172. mi := &file_proxy_trojan_config_proto_msgTypes[3]
  173. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  174. ms.StoreMessageInfo(mi)
  175. }
  176. }
  177. func (x *ServerConfig) String() string {
  178. return protoimpl.X.MessageStringOf(x)
  179. }
  180. func (*ServerConfig) ProtoMessage() {}
  181. func (x *ServerConfig) ProtoReflect() protoreflect.Message {
  182. mi := &file_proxy_trojan_config_proto_msgTypes[3]
  183. if protoimpl.UnsafeEnabled && x != nil {
  184. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  185. if ms.LoadMessageInfo() == nil {
  186. ms.StoreMessageInfo(mi)
  187. }
  188. return ms
  189. }
  190. return mi.MessageOf(x)
  191. }
  192. // Deprecated: Use ServerConfig.ProtoReflect.Descriptor instead.
  193. func (*ServerConfig) Descriptor() ([]byte, []int) {
  194. return file_proxy_trojan_config_proto_rawDescGZIP(), []int{3}
  195. }
  196. func (x *ServerConfig) GetUsers() []*protocol.User {
  197. if x != nil {
  198. return x.Users
  199. }
  200. return nil
  201. }
  202. func (x *ServerConfig) GetFallbacks() []*Fallback {
  203. if x != nil {
  204. return x.Fallbacks
  205. }
  206. return nil
  207. }
  208. func (x *ServerConfig) GetPacketEncoding() packetaddr.PacketAddrType {
  209. if x != nil {
  210. return x.PacketEncoding
  211. }
  212. return packetaddr.PacketAddrType(0)
  213. }
  214. var File_proxy_trojan_config_proto protoreflect.FileDescriptor
  215. var file_proxy_trojan_config_proto_rawDesc = []byte{
  216. 0x0a, 0x19, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x2f, 0x74, 0x72, 0x6f, 0x6a, 0x61, 0x6e, 0x2f, 0x63,
  217. 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x17, 0x76, 0x32, 0x72,
  218. 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x2e, 0x74, 0x72,
  219. 0x6f, 0x6a, 0x61, 0x6e, 0x1a, 0x1a, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x70, 0x72, 0x6f,
  220. 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  221. 0x1a, 0x21, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f,
  222. 0x6c, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x73, 0x70, 0x65, 0x63, 0x2e, 0x70, 0x72,
  223. 0x6f, 0x74, 0x6f, 0x1a, 0x22, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x6e, 0x65, 0x74, 0x2f,
  224. 0x70, 0x61, 0x63, 0x6b, 0x65, 0x74, 0x61, 0x64, 0x64, 0x72, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69,
  225. 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x25, 0x0a, 0x07, 0x41, 0x63, 0x63, 0x6f, 0x75,
  226. 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x01,
  227. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x22, 0x6e,
  228. 0x0a, 0x08, 0x46, 0x61, 0x6c, 0x6c, 0x62, 0x61, 0x63, 0x6b, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x6c,
  229. 0x70, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x6c, 0x70, 0x6e, 0x12, 0x12,
  230. 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x61,
  231. 0x74, 0x68, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  232. 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x65, 0x73, 0x74, 0x18, 0x04,
  233. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x64, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x78, 0x76,
  234. 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x04, 0x78, 0x76, 0x65, 0x72, 0x22, 0x52,
  235. 0x0a, 0x0c, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x42,
  236. 0x0a, 0x06, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2a,
  237. 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  238. 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x2e, 0x53, 0x65, 0x72, 0x76,
  239. 0x65, 0x72, 0x45, 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x06, 0x73, 0x65, 0x72, 0x76,
  240. 0x65, 0x72, 0x22, 0xdb, 0x01, 0x0a, 0x0c, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x43, 0x6f, 0x6e,
  241. 0x66, 0x69, 0x67, 0x12, 0x36, 0x0a, 0x05, 0x75, 0x73, 0x65, 0x72, 0x73, 0x18, 0x01, 0x20, 0x03,
  242. 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e,
  243. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x2e,
  244. 0x55, 0x73, 0x65, 0x72, 0x52, 0x05, 0x75, 0x73, 0x65, 0x72, 0x73, 0x12, 0x3f, 0x0a, 0x09, 0x66,
  245. 0x61, 0x6c, 0x6c, 0x62, 0x61, 0x63, 0x6b, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x21,
  246. 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x78,
  247. 0x79, 0x2e, 0x74, 0x72, 0x6f, 0x6a, 0x61, 0x6e, 0x2e, 0x46, 0x61, 0x6c, 0x6c, 0x62, 0x61, 0x63,
  248. 0x6b, 0x52, 0x09, 0x66, 0x61, 0x6c, 0x6c, 0x62, 0x61, 0x63, 0x6b, 0x73, 0x12, 0x52, 0x0a, 0x0f,
  249. 0x70, 0x61, 0x63, 0x6b, 0x65, 0x74, 0x5f, 0x65, 0x6e, 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x18,
  250. 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x29, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f,
  251. 0x72, 0x65, 0x2e, 0x6e, 0x65, 0x74, 0x2e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x74, 0x61, 0x64, 0x64,
  252. 0x72, 0x2e, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x54, 0x79, 0x70, 0x65,
  253. 0x52, 0x0e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x74, 0x45, 0x6e, 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67,
  254. 0x42, 0x66, 0x0a, 0x1b, 0x63, 0x6f, 0x6d, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f,
  255. 0x72, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x2e, 0x74, 0x72, 0x6f, 0x6a, 0x61, 0x6e, 0x50,
  256. 0x01, 0x5a, 0x2b, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x76, 0x32,
  257. 0x66, 0x6c, 0x79, 0x2f, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2d, 0x63, 0x6f, 0x72, 0x65, 0x2f, 0x76,
  258. 0x35, 0x2f, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x2f, 0x74, 0x72, 0x6f, 0x6a, 0x61, 0x6e, 0xaa, 0x02,
  259. 0x17, 0x56, 0x32, 0x52, 0x61, 0x79, 0x2e, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x50, 0x72, 0x6f, 0x78,
  260. 0x79, 0x2e, 0x54, 0x72, 0x6f, 0x6a, 0x61, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  261. }
  262. var (
  263. file_proxy_trojan_config_proto_rawDescOnce sync.Once
  264. file_proxy_trojan_config_proto_rawDescData = file_proxy_trojan_config_proto_rawDesc
  265. )
  266. func file_proxy_trojan_config_proto_rawDescGZIP() []byte {
  267. file_proxy_trojan_config_proto_rawDescOnce.Do(func() {
  268. file_proxy_trojan_config_proto_rawDescData = protoimpl.X.CompressGZIP(file_proxy_trojan_config_proto_rawDescData)
  269. })
  270. return file_proxy_trojan_config_proto_rawDescData
  271. }
  272. var file_proxy_trojan_config_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
  273. var file_proxy_trojan_config_proto_goTypes = []interface{}{
  274. (*Account)(nil), // 0: v2ray.core.proxy.trojan.Account
  275. (*Fallback)(nil), // 1: v2ray.core.proxy.trojan.Fallback
  276. (*ClientConfig)(nil), // 2: v2ray.core.proxy.trojan.ClientConfig
  277. (*ServerConfig)(nil), // 3: v2ray.core.proxy.trojan.ServerConfig
  278. (*protocol.ServerEndpoint)(nil), // 4: v2ray.core.common.protocol.ServerEndpoint
  279. (*protocol.User)(nil), // 5: v2ray.core.common.protocol.User
  280. (packetaddr.PacketAddrType)(0), // 6: v2ray.core.net.packetaddr.PacketAddrType
  281. }
  282. var file_proxy_trojan_config_proto_depIdxs = []int32{
  283. 4, // 0: v2ray.core.proxy.trojan.ClientConfig.server:type_name -> v2ray.core.common.protocol.ServerEndpoint
  284. 5, // 1: v2ray.core.proxy.trojan.ServerConfig.users:type_name -> v2ray.core.common.protocol.User
  285. 1, // 2: v2ray.core.proxy.trojan.ServerConfig.fallbacks:type_name -> v2ray.core.proxy.trojan.Fallback
  286. 6, // 3: v2ray.core.proxy.trojan.ServerConfig.packet_encoding:type_name -> v2ray.core.net.packetaddr.PacketAddrType
  287. 4, // [4:4] is the sub-list for method output_type
  288. 4, // [4:4] is the sub-list for method input_type
  289. 4, // [4:4] is the sub-list for extension type_name
  290. 4, // [4:4] is the sub-list for extension extendee
  291. 0, // [0:4] is the sub-list for field type_name
  292. }
  293. func init() { file_proxy_trojan_config_proto_init() }
  294. func file_proxy_trojan_config_proto_init() {
  295. if File_proxy_trojan_config_proto != nil {
  296. return
  297. }
  298. if !protoimpl.UnsafeEnabled {
  299. file_proxy_trojan_config_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  300. switch v := v.(*Account); i {
  301. case 0:
  302. return &v.state
  303. case 1:
  304. return &v.sizeCache
  305. case 2:
  306. return &v.unknownFields
  307. default:
  308. return nil
  309. }
  310. }
  311. file_proxy_trojan_config_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  312. switch v := v.(*Fallback); i {
  313. case 0:
  314. return &v.state
  315. case 1:
  316. return &v.sizeCache
  317. case 2:
  318. return &v.unknownFields
  319. default:
  320. return nil
  321. }
  322. }
  323. file_proxy_trojan_config_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  324. switch v := v.(*ClientConfig); i {
  325. case 0:
  326. return &v.state
  327. case 1:
  328. return &v.sizeCache
  329. case 2:
  330. return &v.unknownFields
  331. default:
  332. return nil
  333. }
  334. }
  335. file_proxy_trojan_config_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  336. switch v := v.(*ServerConfig); i {
  337. case 0:
  338. return &v.state
  339. case 1:
  340. return &v.sizeCache
  341. case 2:
  342. return &v.unknownFields
  343. default:
  344. return nil
  345. }
  346. }
  347. }
  348. type x struct{}
  349. out := protoimpl.TypeBuilder{
  350. File: protoimpl.DescBuilder{
  351. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  352. RawDescriptor: file_proxy_trojan_config_proto_rawDesc,
  353. NumEnums: 0,
  354. NumMessages: 4,
  355. NumExtensions: 0,
  356. NumServices: 0,
  357. },
  358. GoTypes: file_proxy_trojan_config_proto_goTypes,
  359. DependencyIndexes: file_proxy_trojan_config_proto_depIdxs,
  360. MessageInfos: file_proxy_trojan_config_proto_msgTypes,
  361. }.Build()
  362. File_proxy_trojan_config_proto = out.File
  363. file_proxy_trojan_config_proto_rawDesc = nil
  364. file_proxy_trojan_config_proto_goTypes = nil
  365. file_proxy_trojan_config_proto_depIdxs = nil
  366. }