config.pb.go 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  1. package tls
  2. import (
  3. proto "github.com/golang/protobuf/proto"
  4. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  5. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  6. reflect "reflect"
  7. sync "sync"
  8. )
  9. const (
  10. // Verify that this generated code is sufficiently up-to-date.
  11. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  12. // Verify that runtime/protoimpl is sufficiently up-to-date.
  13. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  14. )
  15. // This is a compile-time assertion that a sufficiently up-to-date version
  16. // of the legacy proto package is being used.
  17. const _ = proto.ProtoPackageIsVersion4
  18. type Certificate_Usage int32
  19. const (
  20. Certificate_ENCIPHERMENT Certificate_Usage = 0
  21. Certificate_AUTHORITY_VERIFY Certificate_Usage = 1
  22. Certificate_AUTHORITY_ISSUE Certificate_Usage = 2
  23. )
  24. // Enum value maps for Certificate_Usage.
  25. var (
  26. Certificate_Usage_name = map[int32]string{
  27. 0: "ENCIPHERMENT",
  28. 1: "AUTHORITY_VERIFY",
  29. 2: "AUTHORITY_ISSUE",
  30. }
  31. Certificate_Usage_value = map[string]int32{
  32. "ENCIPHERMENT": 0,
  33. "AUTHORITY_VERIFY": 1,
  34. "AUTHORITY_ISSUE": 2,
  35. }
  36. )
  37. func (x Certificate_Usage) Enum() *Certificate_Usage {
  38. p := new(Certificate_Usage)
  39. *p = x
  40. return p
  41. }
  42. func (x Certificate_Usage) String() string {
  43. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  44. }
  45. func (Certificate_Usage) Descriptor() protoreflect.EnumDescriptor {
  46. return file_v2ray_com_core_transport_internet_tls_config_proto_enumTypes[0].Descriptor()
  47. }
  48. func (Certificate_Usage) Type() protoreflect.EnumType {
  49. return &file_v2ray_com_core_transport_internet_tls_config_proto_enumTypes[0]
  50. }
  51. func (x Certificate_Usage) Number() protoreflect.EnumNumber {
  52. return protoreflect.EnumNumber(x)
  53. }
  54. // Deprecated: Use Certificate_Usage.Descriptor instead.
  55. func (Certificate_Usage) EnumDescriptor() ([]byte, []int) {
  56. return file_v2ray_com_core_transport_internet_tls_config_proto_rawDescGZIP(), []int{0, 0}
  57. }
  58. type Certificate struct {
  59. state protoimpl.MessageState
  60. sizeCache protoimpl.SizeCache
  61. unknownFields protoimpl.UnknownFields
  62. // TLS certificate in x509 format.
  63. Certificate []byte `protobuf:"bytes,1,opt,name=Certificate,proto3" json:"Certificate,omitempty"`
  64. // TLS key in x509 format.
  65. Key []byte `protobuf:"bytes,2,opt,name=Key,proto3" json:"Key,omitempty"`
  66. Usage Certificate_Usage `protobuf:"varint,3,opt,name=usage,proto3,enum=v2ray.core.transport.internet.tls.Certificate_Usage" json:"usage,omitempty"`
  67. }
  68. func (x *Certificate) Reset() {
  69. *x = Certificate{}
  70. if protoimpl.UnsafeEnabled {
  71. mi := &file_v2ray_com_core_transport_internet_tls_config_proto_msgTypes[0]
  72. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  73. ms.StoreMessageInfo(mi)
  74. }
  75. }
  76. func (x *Certificate) String() string {
  77. return protoimpl.X.MessageStringOf(x)
  78. }
  79. func (*Certificate) ProtoMessage() {}
  80. func (x *Certificate) ProtoReflect() protoreflect.Message {
  81. mi := &file_v2ray_com_core_transport_internet_tls_config_proto_msgTypes[0]
  82. if protoimpl.UnsafeEnabled && x != nil {
  83. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  84. if ms.LoadMessageInfo() == nil {
  85. ms.StoreMessageInfo(mi)
  86. }
  87. return ms
  88. }
  89. return mi.MessageOf(x)
  90. }
  91. // Deprecated: Use Certificate.ProtoReflect.Descriptor instead.
  92. func (*Certificate) Descriptor() ([]byte, []int) {
  93. return file_v2ray_com_core_transport_internet_tls_config_proto_rawDescGZIP(), []int{0}
  94. }
  95. func (x *Certificate) GetCertificate() []byte {
  96. if x != nil {
  97. return x.Certificate
  98. }
  99. return nil
  100. }
  101. func (x *Certificate) GetKey() []byte {
  102. if x != nil {
  103. return x.Key
  104. }
  105. return nil
  106. }
  107. func (x *Certificate) GetUsage() Certificate_Usage {
  108. if x != nil {
  109. return x.Usage
  110. }
  111. return Certificate_ENCIPHERMENT
  112. }
  113. type Config struct {
  114. state protoimpl.MessageState
  115. sizeCache protoimpl.SizeCache
  116. unknownFields protoimpl.UnknownFields
  117. // Whether or not to allow self-signed certificates.
  118. AllowInsecure bool `protobuf:"varint,1,opt,name=allow_insecure,json=allowInsecure,proto3" json:"allow_insecure,omitempty"`
  119. // Whether or not to allow insecure cipher suites.
  120. AllowInsecureCiphers bool `protobuf:"varint,5,opt,name=allow_insecure_ciphers,json=allowInsecureCiphers,proto3" json:"allow_insecure_ciphers,omitempty"`
  121. // List of certificates to be served on server.
  122. Certificate []*Certificate `protobuf:"bytes,2,rep,name=certificate,proto3" json:"certificate,omitempty"`
  123. // Override server name.
  124. ServerName string `protobuf:"bytes,3,opt,name=server_name,json=serverName,proto3" json:"server_name,omitempty"`
  125. // Lists of string as ALPN values.
  126. NextProtocol []string `protobuf:"bytes,4,rep,name=next_protocol,json=nextProtocol,proto3" json:"next_protocol,omitempty"`
  127. // Whether or not to disable session (ticket) resumption.
  128. DisableSessionResumption bool `protobuf:"varint,6,opt,name=disable_session_resumption,json=disableSessionResumption,proto3" json:"disable_session_resumption,omitempty"`
  129. // If true, root certificates on the system will not be loaded for verification.
  130. DisableSystemRoot bool `protobuf:"varint,7,opt,name=disable_system_root,json=disableSystemRoot,proto3" json:"disable_system_root,omitempty"`
  131. }
  132. func (x *Config) Reset() {
  133. *x = Config{}
  134. if protoimpl.UnsafeEnabled {
  135. mi := &file_v2ray_com_core_transport_internet_tls_config_proto_msgTypes[1]
  136. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  137. ms.StoreMessageInfo(mi)
  138. }
  139. }
  140. func (x *Config) String() string {
  141. return protoimpl.X.MessageStringOf(x)
  142. }
  143. func (*Config) ProtoMessage() {}
  144. func (x *Config) ProtoReflect() protoreflect.Message {
  145. mi := &file_v2ray_com_core_transport_internet_tls_config_proto_msgTypes[1]
  146. if protoimpl.UnsafeEnabled && x != nil {
  147. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  148. if ms.LoadMessageInfo() == nil {
  149. ms.StoreMessageInfo(mi)
  150. }
  151. return ms
  152. }
  153. return mi.MessageOf(x)
  154. }
  155. // Deprecated: Use Config.ProtoReflect.Descriptor instead.
  156. func (*Config) Descriptor() ([]byte, []int) {
  157. return file_v2ray_com_core_transport_internet_tls_config_proto_rawDescGZIP(), []int{1}
  158. }
  159. func (x *Config) GetAllowInsecure() bool {
  160. if x != nil {
  161. return x.AllowInsecure
  162. }
  163. return false
  164. }
  165. func (x *Config) GetAllowInsecureCiphers() bool {
  166. if x != nil {
  167. return x.AllowInsecureCiphers
  168. }
  169. return false
  170. }
  171. func (x *Config) GetCertificate() []*Certificate {
  172. if x != nil {
  173. return x.Certificate
  174. }
  175. return nil
  176. }
  177. func (x *Config) GetServerName() string {
  178. if x != nil {
  179. return x.ServerName
  180. }
  181. return ""
  182. }
  183. func (x *Config) GetNextProtocol() []string {
  184. if x != nil {
  185. return x.NextProtocol
  186. }
  187. return nil
  188. }
  189. func (x *Config) GetDisableSessionResumption() bool {
  190. if x != nil {
  191. return x.DisableSessionResumption
  192. }
  193. return false
  194. }
  195. func (x *Config) GetDisableSystemRoot() bool {
  196. if x != nil {
  197. return x.DisableSystemRoot
  198. }
  199. return false
  200. }
  201. var File_v2ray_com_core_transport_internet_tls_config_proto protoreflect.FileDescriptor
  202. var file_v2ray_com_core_transport_internet_tls_config_proto_rawDesc = []byte{
  203. 0x0a, 0x32, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x6f, 0x72, 0x65,
  204. 0x2f, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72,
  205. 0x6e, 0x65, 0x74, 0x2f, 0x74, 0x6c, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x70,
  206. 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x21, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65,
  207. 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x69, 0x6e, 0x74, 0x65, 0x72,
  208. 0x6e, 0x65, 0x74, 0x2e, 0x74, 0x6c, 0x73, 0x22, 0xd3, 0x01, 0x0a, 0x0b, 0x43, 0x65, 0x72, 0x74,
  209. 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x43, 0x65, 0x72, 0x74, 0x69,
  210. 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x43, 0x65,
  211. 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x4b, 0x65, 0x79,
  212. 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x03, 0x4b, 0x65, 0x79, 0x12, 0x4a, 0x0a, 0x05, 0x75,
  213. 0x73, 0x61, 0x67, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x34, 0x2e, 0x76, 0x32, 0x72,
  214. 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72,
  215. 0x74, 0x2e, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x2e, 0x74, 0x6c, 0x73, 0x2e, 0x43,
  216. 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x2e, 0x55, 0x73, 0x61, 0x67, 0x65,
  217. 0x52, 0x05, 0x75, 0x73, 0x61, 0x67, 0x65, 0x22, 0x44, 0x0a, 0x05, 0x55, 0x73, 0x61, 0x67, 0x65,
  218. 0x12, 0x10, 0x0a, 0x0c, 0x45, 0x4e, 0x43, 0x49, 0x50, 0x48, 0x45, 0x52, 0x4d, 0x45, 0x4e, 0x54,
  219. 0x10, 0x00, 0x12, 0x14, 0x0a, 0x10, 0x41, 0x55, 0x54, 0x48, 0x4f, 0x52, 0x49, 0x54, 0x59, 0x5f,
  220. 0x56, 0x45, 0x52, 0x49, 0x46, 0x59, 0x10, 0x01, 0x12, 0x13, 0x0a, 0x0f, 0x41, 0x55, 0x54, 0x48,
  221. 0x4f, 0x52, 0x49, 0x54, 0x59, 0x5f, 0x49, 0x53, 0x53, 0x55, 0x45, 0x10, 0x02, 0x22, 0xeb, 0x02,
  222. 0x0a, 0x06, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x25, 0x0a, 0x0e, 0x61, 0x6c, 0x6c, 0x6f,
  223. 0x77, 0x5f, 0x69, 0x6e, 0x73, 0x65, 0x63, 0x75, 0x72, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08,
  224. 0x52, 0x0d, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x49, 0x6e, 0x73, 0x65, 0x63, 0x75, 0x72, 0x65, 0x12,
  225. 0x34, 0x0a, 0x16, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x69, 0x6e, 0x73, 0x65, 0x63, 0x75, 0x72,
  226. 0x65, 0x5f, 0x63, 0x69, 0x70, 0x68, 0x65, 0x72, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52,
  227. 0x14, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x49, 0x6e, 0x73, 0x65, 0x63, 0x75, 0x72, 0x65, 0x43, 0x69,
  228. 0x70, 0x68, 0x65, 0x72, 0x73, 0x12, 0x50, 0x0a, 0x0b, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69,
  229. 0x63, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x76, 0x32, 0x72,
  230. 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72,
  231. 0x74, 0x2e, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x2e, 0x74, 0x6c, 0x73, 0x2e, 0x43,
  232. 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x52, 0x0b, 0x63, 0x65, 0x72, 0x74,
  233. 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x65, 0x72, 0x76, 0x65,
  234. 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x65,
  235. 0x72, 0x76, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6e, 0x65, 0x78, 0x74,
  236. 0x5f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09, 0x52,
  237. 0x0c, 0x6e, 0x65, 0x78, 0x74, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x12, 0x3c, 0x0a,
  238. 0x1a, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e,
  239. 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6d, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28,
  240. 0x08, 0x52, 0x18, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f,
  241. 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6d, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2e, 0x0a, 0x13, 0x64,
  242. 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x5f, 0x72, 0x6f,
  243. 0x6f, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x11, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c,
  244. 0x65, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x52, 0x6f, 0x6f, 0x74, 0x42, 0x52, 0x0a, 0x25, 0x63,
  245. 0x6f, 0x6d, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x74, 0x72,
  246. 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74,
  247. 0x2e, 0x74, 0x6c, 0x73, 0x50, 0x01, 0x5a, 0x03, 0x74, 0x6c, 0x73, 0xaa, 0x02, 0x21, 0x56, 0x32,
  248. 0x52, 0x61, 0x79, 0x2e, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f,
  249. 0x72, 0x74, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x2e, 0x54, 0x6c, 0x73, 0x62,
  250. 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  251. }
  252. var (
  253. file_v2ray_com_core_transport_internet_tls_config_proto_rawDescOnce sync.Once
  254. file_v2ray_com_core_transport_internet_tls_config_proto_rawDescData = file_v2ray_com_core_transport_internet_tls_config_proto_rawDesc
  255. )
  256. func file_v2ray_com_core_transport_internet_tls_config_proto_rawDescGZIP() []byte {
  257. file_v2ray_com_core_transport_internet_tls_config_proto_rawDescOnce.Do(func() {
  258. file_v2ray_com_core_transport_internet_tls_config_proto_rawDescData = protoimpl.X.CompressGZIP(file_v2ray_com_core_transport_internet_tls_config_proto_rawDescData)
  259. })
  260. return file_v2ray_com_core_transport_internet_tls_config_proto_rawDescData
  261. }
  262. var file_v2ray_com_core_transport_internet_tls_config_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
  263. var file_v2ray_com_core_transport_internet_tls_config_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
  264. var file_v2ray_com_core_transport_internet_tls_config_proto_goTypes = []interface{}{
  265. (Certificate_Usage)(0), // 0: v2ray.core.transport.internet.tls.Certificate.Usage
  266. (*Certificate)(nil), // 1: v2ray.core.transport.internet.tls.Certificate
  267. (*Config)(nil), // 2: v2ray.core.transport.internet.tls.Config
  268. }
  269. var file_v2ray_com_core_transport_internet_tls_config_proto_depIdxs = []int32{
  270. 0, // 0: v2ray.core.transport.internet.tls.Certificate.usage:type_name -> v2ray.core.transport.internet.tls.Certificate.Usage
  271. 1, // 1: v2ray.core.transport.internet.tls.Config.certificate:type_name -> v2ray.core.transport.internet.tls.Certificate
  272. 2, // [2:2] is the sub-list for method output_type
  273. 2, // [2:2] is the sub-list for method input_type
  274. 2, // [2:2] is the sub-list for extension type_name
  275. 2, // [2:2] is the sub-list for extension extendee
  276. 0, // [0:2] is the sub-list for field type_name
  277. }
  278. func init() { file_v2ray_com_core_transport_internet_tls_config_proto_init() }
  279. func file_v2ray_com_core_transport_internet_tls_config_proto_init() {
  280. if File_v2ray_com_core_transport_internet_tls_config_proto != nil {
  281. return
  282. }
  283. if !protoimpl.UnsafeEnabled {
  284. file_v2ray_com_core_transport_internet_tls_config_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  285. switch v := v.(*Certificate); i {
  286. case 0:
  287. return &v.state
  288. case 1:
  289. return &v.sizeCache
  290. case 2:
  291. return &v.unknownFields
  292. default:
  293. return nil
  294. }
  295. }
  296. file_v2ray_com_core_transport_internet_tls_config_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  297. switch v := v.(*Config); i {
  298. case 0:
  299. return &v.state
  300. case 1:
  301. return &v.sizeCache
  302. case 2:
  303. return &v.unknownFields
  304. default:
  305. return nil
  306. }
  307. }
  308. }
  309. type x struct{}
  310. out := protoimpl.TypeBuilder{
  311. File: protoimpl.DescBuilder{
  312. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  313. RawDescriptor: file_v2ray_com_core_transport_internet_tls_config_proto_rawDesc,
  314. NumEnums: 1,
  315. NumMessages: 2,
  316. NumExtensions: 0,
  317. NumServices: 0,
  318. },
  319. GoTypes: file_v2ray_com_core_transport_internet_tls_config_proto_goTypes,
  320. DependencyIndexes: file_v2ray_com_core_transport_internet_tls_config_proto_depIdxs,
  321. EnumInfos: file_v2ray_com_core_transport_internet_tls_config_proto_enumTypes,
  322. MessageInfos: file_v2ray_com_core_transport_internet_tls_config_proto_msgTypes,
  323. }.Build()
  324. File_v2ray_com_core_transport_internet_tls_config_proto = out.File
  325. file_v2ray_com_core_transport_internet_tls_config_proto_rawDesc = nil
  326. file_v2ray_com_core_transport_internet_tls_config_proto_goTypes = nil
  327. file_v2ray_com_core_transport_internet_tls_config_proto_depIdxs = nil
  328. }